A nice easy one hopefully?

Beckwa

New Member
Joined
Mar 12, 2002
Messages
33
Ok, with my System I would like the same pop up reminder message to appear on the last day of every month. Any ideas? Thanks, :) BEX :)
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Hi Beckwa

You could try this:

Right click a sheet tab, left click View Code.
In the VBA Project window at left select This Workbook.
Paste this code in the large white area

Private Sub Workbook_Open()
If Day(Date + 1) = 1 Then MsgBox "Last Day of Month"
End Sub

Above the code are 2 drop down boxes, in the left one select Workbook and in the right one select Open. Use Alt+F11 to return to sheet.

This message should display when you open the workbook on the last day of the month

regards
Derek
 
Upvote 0

Forum statistics

Threads
1,214,592
Messages
6,120,433
Members
448,961
Latest member
nzskater

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