Thread: Refresh VBA
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Andy Andy is offline
external usenet poster
 
Posts: 414
Default Refresh VBA

I have a workbook with a macro below. Within a worksheet I have a number of
tables linked to an access query and would like a macro to refresh all of
these tables at once to pull the new data into my 'master' worksheet. Each
week however this worksheet is copied and renamed for audit purposes. However
when I run the macro below it updates the data in all of these archived
sheets as well.

So in my macro I either want to tell it to refresh the data in just the
'master' worksheet, or prevent it from updating data in the archived
worksheets.

Thanks


Sub Refresh_all_queries()
'
' Refresh_all_queries Macro
'

'
ActiveWorkbook.RefreshAll
Range("F27").Select
MsgBox "All data should have now been refreshed, please ensure that the
month to date figures are also completed.", vbInformation

End Sub