Refreshing all Queries in Power Query

uk747

Well-known Member
Joined
Jul 20, 2011
Messages
832
Office Version
  1. 365
Platform
  1. Windows
Hi

I have one query from an external workbook and then I have several other queries that use the External Query

I'm trying to Refresh all Queries in VBA
1st Get the External Data and then from that Refresh All other Queries that are based on that one

Initially I tried Refresh ALL and then Reffresh2 option but neither worked. They refreshed the external query but didnt refresh all other queries in the workbook
VBA Code:
Sub Refresh1()
' Refreshed External Query but didn't Refresh other queries
ActiveWorkbook.RefreshAll

End Sub

VBA Code:
Sub Refresh2()
' Refreshed External Query but didnt Refresh other queries
Dim objConnection, bBackground

For Each objConnection In ThisWorkbook.Connections
  bBackground = objConnection.OLEDBConnection.BackgroundQuery

  objConnection.OLEDBConnection.BackgroundQuery = False
  
  objConnection.Refresh

  objConnection.OLEDBConnection.BackgroundQuery = bBackground

Next

End Sub
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.

Forum statistics

Threads
1,215,089
Messages
6,123,058
Members
449,091
Latest member
ikke

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