Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

BQAPI.XLL on Excel XP

Status
Not open for further replies.

ecuador

Programmer
Jul 4, 2004
2
DE
I have a problem when i try to load BQAPI.XLL add in on Excel XP because at end of the loading an error message appear.
Someone knows if exist a new version of this Add in for Excel XP, and where i found it.

Please help me..!
 
Do not load BusinessQuery as an add-in. Open it as a file. Copy the following macro into the XLStart directory.

Sub Auto_Open ( )
Application.ScreenUpdating = False
ChDrive "P:"
ChDir "\BusinessObjects"
Workbooks.Open Filename:="BQAPI.XLL"
Application.RegisterXLL Filename:="P:\BusinessObjects\BQAPI.XLL"
End Sub



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top