Hi,
as an example below
Sub ontimer()
MsgBox ("Hello")
Application.OnTime Now + TimeValue("00:01:00"), "ontimer"
End Sub
when executed from button, displays the message then 1 minute later executes it again.
Now if the button is pressed more than once, it is looping more than once. So if i...