Pop up message based on timer

M4TVD

New Member
Joined
Mar 23, 2021
Messages
25
Office Version
  1. 365
Platform
  1. Windows
Hello.

I am trying to add a pop up message based on a pre set time and date. I have this code and it works, but, I need to add more than 1 time/date that will trigger the message box. I can not find a way to do this so any help would be appreciated.

this is the code that I have:

Sub StartTimer()
Static SchedSave
If SchedSave <> 0 Then
Application.OnTime SchedSave, "TimeOver", , False
End If
SchedSave = TimeValue("23/03/2021 07:27:30")
Application.OnTime SchedSave, "TimeOver", , True
End Sub


Sub TimeOver()


MsgBox " RADIO CHECK NOW! "


End Sub


Any help greatly appreciated
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Hi there *M4TVD. Nice code! I tried the code below and it seemed to work for the second time, but you may need to do something to stop it from looping. Hope this helps get you started.

VBA Code:
Sub StartTimer()
Static SchedSave
If SchedSave <> 0 Then
Application.OnTime SchedSave, "TimeOver", , False
End If
'SchedSave = TimeValue("23/03/2021 07:27:30")
SchedSave = TimeValue("21/04/2021 15:41:00")
Application.OnTime SchedSave, "TimeOver", , True
SchedSave = TimeValue("21/04/2021 15:42:00")
Application.OnTime SchedSave, "TimeOver", , True
End Sub


Sub TimeOver()


MsgBox " RADIO CHECK NOW! "
Call StartTimer

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,867
Messages
6,122,002
Members
449,059
Latest member
mtsheetz

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top