View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Graeme Graeme is offline
external usenet poster
 
Posts: 59
Default Application wait question

This worked perfectly! Thank you.

"roger" wrote:

"Graeme" wrote in message
...

I'm having some issues with pausing a macro to allow data to load. I have

a
table created from an imported web query, and my macro refreshes the query
and then makes some adjustments to the new data:

Sub NewData()

'Refresh part
Range("e44").Select
Selection.QueryTable.Refresh


Does this work?

Selection.QueryTable.Refresh (False)


--
roger