Running macros automaticaly

  • Thread starter Thread starter Fernando
  • Start date Start date
Yes, you can.
The following line will run the macro "Sicuta" one minute after execition.

Application.OnTime Now + TimeValue("00:01:00"), "Sicuta"
 
Thank you Michel!

"Michel Petit" escreveu:
Yes, you can.
The following line will run the macro "Sicuta" one minute after execition.

Application.OnTime Now + TimeValue("00:01:00"), "Sicuta"
 
Back
Top