vote up 0 vote down star

I'm using VBA to create Excel 2003 QueryTables. I need to add formatting to the results of the queries, but can't do this until the query has finished, as the code needs to format the correct size of table.

I thought the solution to this was to run the Refresh with BackgroundQuery set to false, but this is giving me an error:

Run-time error '1004':

Application-defined or object-defined error

This happens whether I set the BackgroundQuery property of the QueryTable or run the Refresh method specifying the BackgroundQuery parameter. The code works fine without specifying the BackgroundQuery value.

The database connection is an ODBC connection to a Sybase database.

Can anyone explain why this might be causing a problem? Or is there a better way to format the output of a QueryTable?

I've tried waiting while QueryTable.Refreshing is true, but this seems to hang the process completely.

flag

Code please? Sample code will help. – shahkalpesh Jul 14 at 16:07

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.