excel run macro every 5 minutes

The solution for “excel run macro every 5 minutes” can be found here. The following code will assist you in solving the problem.

Public RunWhen As Double
Public Const cRunWhat = “my_Procedure”

Sub StartTimer()
RunWhen = Now + TimeSerial(0, 10, 0)
Application.OnTime earliesttime:=RunWhen, procedure:=cRunWhat, _
schedule:=True
End Sub

Sub StopTimer()
On Error Resume Next
Application.OnTime earliesttime:=RunWhen, _
procedure:=cRunWhat, schedule:=False
End Sub

Sub my_Procedure()
MsgBox “hello world”
Call StartTimer
End Sub

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts