I need to have my macro executed every 10 minutes .
This allows it to work in 10 minutes
sub my_Procedure ()
msgbox "hello world"
end sub
sub test()
Application.OnTime Now + TimeValue("00:00:10"), "my_Procedure"
end sub
But this works only once . How can I have my macro execute every 10 minutes ?
See Question&Answers more detail:os