Running macros automaticaly

M

Michel Petit

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

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

Fernando

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"
 
Top