Greetings,
I have a number of scraper like subs that I would like to automate. for this task I am using a number of subs to serve as the timing tool like the one below:
My question is whether or not I can turn my computer off and get the updates at the moment that I turn it back on? or would I need to have my machine running 24/7 to allow for the code to maintain the time counter. Any ideas?
I have a number of scraper like subs that I would like to automate. for this task I am using a number of subs to serve as the timing tool like the one below:
Code:
Sub YZ_ST19()
RW19 = Now + TimeSerial(744, 0, 0)
Application.OnTime EarliestTime:=RW19, Procedure:=RWCALL19, _
Schedule:=True
End Sub
My question is whether or not I can turn my computer off and get the updates at the moment that I turn it back on? or would I need to have my machine running 24/7 to allow for the code to maintain the time counter. Any ideas?