timer Macro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Looking for help in making a stop macro the below timer macro
Timer works but seems to continue running

Public Sub timer1()
Application.OnTime Now + TimeValue("00:00:5"), "stop1"
End Sub

Thanks Leon
 
I've not done much with OnTime, but with the help of this group I got the
following line working.

Application.OnTime earliesttime:=Now + TimeSerial(0, 0, 3),
procedure:="UnhideColumns"
 
Thank you

Ian said:
I've not done much with OnTime, but with the help of this group I got the
following line working.

Application.OnTime earliesttime:=Now + TimeSerial(0, 0, 3),
procedure:="UnhideColumns"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Application.OnTime 2
AcceptInput Timer event not working 0
Flashing cells 1
Stopping a timer 10
Auto print 8
Elapsed times > 24hrs 12
making a countdown timer 1
Stop timer. 5

Back
Top