VBA Code to Give Status of Refresh

netspeedz

New Member
Joined
Aug 11, 2011
Messages
21
I have the below VBA code that I have partially working but need some help to fully complete it.

The code loops through all Power Queries associated to the workbook. As it loops through the queries, text is displayed in a cell that gives the user what the current query being processed.

The code that I have (below) works and processes the first query in the query name array but then exits the loop (no errors returned). I know it exits the loop because the cell (I17 in this particular workbook) is never updated with the 'finish' text.

I ordinally tried to update the Excel status bar with the same information but couldn't find anything that would modify Excel status bar regarding query updates/status.

Would like assistance in the fix for the code to loop through all defined queries in the query array. Any help would be appreciated.

Here's the code:

VBA Code:
Sub RefreshQueriesAndUpdateProgress()
    Dim wsCoins As Worksheet
    Dim queryNames As Variant
    Dim queryConnection As WorkbookConnection
    Dim queryName As Variant
    
    Set wsCoins = ThisWorkbook.Sheets("US Silver Coins") ' Name of sheet to place status on
    
    ' List query names to refresh
    queryNames = Array("Query - Precious Metal Spot Prices", "Query - Live Silver Price", "Query - Gold Ratio")
    
    For Each queryName In queryNames
        Set queryConnection = ThisWorkbook.Connections(queryName)
        
        wsCoins.Range("I17").Value = "Refreshing query: " & queryName
        queryConnection.Refresh
        
        ' Wait for the calculation to finish for the current query
        Do
            DoEvents ' Allow other processes to execute
        Loop Until Application.Ready And Not queryConnection.IsRefreshing
        
        ' Update the cell with the completion of the query refresh
        wsCoins.Range("I17").Value = "Query refreshed: " & queryName
    Next queryName
    
    wsCoins.Range("I17").Value = "All queries refreshed!"
End Sub
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
I can't see anything obvious except maybe your For Each loop. I've never used that against an array because it seems it's always used against a collection. Any array loop I can recall seeing used a counter instead. I suggest you put a break point at the start and F8 through the code to see what happens and check variable values and/or properties as you go.
 
Upvote 0

Forum statistics

Threads
1,215,200
Messages
6,123,601
Members
449,109
Latest member
Sebas8956

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top