Daily Reminder Message

n2lectual

Board Regular
Joined
Mar 18, 2008
Messages
80
I am going on vacation soon and a replacement will be using my excel program. I would like to have a message pop up at 4:00 PM every day that says "Reminder, do End of Day procedure before leaving."
He clicks OK to continue, message disappears.

Can this be done? How? Thanks
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
If the user opens the workbook and continues to have it open the following code will work.

Code:
Private Sub Workbook_Open()

Application.OnTime TimeValue("16:00:00"), "MsgPopUp"


End Sub

Sub MsgPopUp()

Call MsgBox("Reminder, do End of Day procedure before leaving.", vbInformation)

End Sub

But, only if he has it open. It will also only display the message in excel.

A better solution is to use outlook reminders set to daily.

Hope it helps
 
Upvote 0
I already have a: Private Sub Workbook_Open()., that opens workbook to my INDEX worksheet everytime. There seems to be a conflict. Is there a way to add another (your) Private Sub or combine the two to work?
 
Upvote 0
I already have a: Private Sub Workbook_Open()., that opens workbook to my INDEX worksheet everytime. There seems to be a conflict. Is there a way to add another (your) Private Sub or combine the two to work?

Just add this line to your Open event:

Application.OnTime TimeValue("16:00:00"), "MsgPopUp"

Then add the MsgPopUp code to a general module.

You'll want to make sure that you don't have two open events in the same wb or you'll get an error.

HTH,
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,267
Members
449,075
Latest member
staticfluids

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