Thread
:
Web Query Query
View Single Post
#
1
Posted to microsoft.public.excel.programming
Don Guillett[_4_]
external usenet poster
Posts: 2,337
Web Query Query
try this
For i = 1 To ActiveSheet.QueryTables.Count
ActiveSheet.QueryTables(i).Refresh False
Next
--
Don Guillett
SalesAid Software
wrote in message
ps.com...
The soloution to Web query returned no data message -
Public Sub Test()
Dim Qrytbl As QueryTable
For Each Qrytbl In ActiveSheet.QueryTables
On Error Resume Next
Qrytbl.Refresh False
On Error GoTo 0
Next Qrytbl
End Sub
Reply With Quote
Don Guillett[_4_]
View Public Profile
Find all posts by Don Guillett[_4_]