Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
Should't this work? Also, it ask to inmport text, how to say "yes" evertime?
Text name will be different ever time. Sub Refreshall () For i = 2 To Sheets.Count With Active.Sheet Selection.QueryTable.Refresh BackgroundQuery:=False Next i End Sub Thanks |
#2
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
Hi,
Although the loop index goes from to to the number of sheets the refresh is made on the activesheets selection, which never changes. Disabling DisplayAlerts should suppress the dialogs. Try something like this. Sub Refreshall () application.displayalerts=false For i = 2 To workSheets.Count worksheets(i).QueryTable.Refresh BackgroundQuery:=False Next i application.displayalerts=true End Sub Cheers Andy -- Andy Pope, Microsoft MVP - Excel http://www.andypope.info "pgarcia" wrote in message ... Should't this work? Also, it ask to inmport text, how to say "yes" evertime? Text name will be different ever time. Sub Refreshall () For i = 2 To Sheets.Count With Active.Sheet Selection.QueryTable.Refresh BackgroundQuery:=False Next i End Sub Thanks |
#3
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
Hi,
First, you should get an error with the With Active.Sheet command for 2 reasons 1. the command is ActiveSheet 2. every With should have and End With You might modify you code to read: Sub Refreshall () For i = 2 To Sheets.Count Sheets(i).Range("A1").QueryTable.Refresh BackgroundQuery:=False Next i End Sub As I read it the QueryTable.Refresh command requires a range that intersects the querytable, so you could use selection if you can be sure the cursor is in the querytable range. In the example above range A1 is assumed to be in the querytable and below the range named Data is also. I have not tested this code - you might need to make it read: Sub Refreshall () For i = 2 To Sheets.Count Sheets(i).Activate Range("Data").QueryTable.Refresh BackgroundQuery:=False Next i End Sub Cheers, Shane Devenshire "pgarcia" wrote in message ... Should't this work? Also, it ask to inmport text, how to say "yes" evertime? Text name will be different ever time. Sub Refreshall () For i = 2 To Sheets.Count With Active.Sheet Selection.QueryTable.Refresh BackgroundQuery:=False Next i End Sub Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dynamically updating sheet upon data Refresh All? | Excel Discussion (Misc queries) | |||
refresh sheet data | Excel Discussion (Misc queries) | |||
Refresh Pivot in Locked Sheet? | Excel Discussion (Misc queries) | |||
Refresh data from an Excel sheet | Excel Worksheet Functions | |||
refresh external data on a protected sheet | Excel Discussion (Misc queries) |