Let's say I want the url to change each iteration.
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://www.google.com", Destination:=Range("$A$1"))
What can I put after the "...google.com" so that the URL is different the next time it runs? I have the loop set up, but I don't know how to join the first part of the url (static) and the second (dynamic).
Thanks in advance.
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://www.google.com", Destination:=Range("$A$1"))
What can I put after the "...google.com" so that the URL is different the next time it runs? I have the loop set up, but I don't know how to join the first part of the url (static) and the second (dynamic).
Thanks in advance.