A note on Forum Rules: when posting code you must use code tage. That is you start your code with (but without the space) [co de] and end with [/co de]
I presume you have set up the links as before. I have added in a couple of example lines. It stores all the values in adjacent columns
Sub GetData()
Dim rng As Range
Dim i As Long
Dim dte As Date
Dim dteNext As Date
dte = Now
Set rng = ActiveSheet.Range("E1")
For i = 1 To 3 'change this to number of time to loop
ThisWorkbook.RefreshAll
DoEvents
Set rng = rng.Offset(1)
rng = Now
''
''change this block to the actually addresses you need
''
rng.Offset(, 1) = ActiveSheet.Range("B3") '1st piece of data
rng.Offset(, 2) = ActiveSheet.Range("C5") '2nd piece of data
rng.Offset(, 3) = ActiveSheet.Range("B12") '3rd piece of data
dteNext = dte + TimeSerial(Hour:=0, Minute:=1 * i, Second:=0) 'change this value to number of minutes
Application.Wait dteNext
Next
MsgBox "done"
End Sub
Bookmarks