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.
