Using Indirect in VBA to Refresh Individual Queries

AdamLeonardo

New Member
Joined
Mar 11, 2017
Messages
5
Hi All,

I need help with a project I'm working on and am not well versed using Visual Basic. I've developed a workbook that draws data from several other workbooks and uses queries to populate the worksheets. It's got 80 queries that can be refreshed as needed, but they don't all change data every day and if I refresh all, it takes a while to load everything. I'd like to be able to list which queries I'd like to refresh and use a macro to only refresh those. The first query number is listed in cell A3 and will change everyday. I don't know how to use an indirect type of equation in VBA. Can anyone help me figure this out? Thanks!
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Something like:

Code:
ActiveWorkbook.Connections(Range("A1").Value).Refresh

Use the macro recorder to see what you need to type in the cell.
 
Upvote 0

Forum statistics

Threads
1,215,079
Messages
6,123,005
Members
449,092
Latest member
masterms

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