- Joined
- Dec 13, 2017
- Messages
- 71
- Reaction score
- 19
Currently I have the following code:
Nice, but very basic. I am trying to have the message read " Today is the XX day of the month, & there are XX days left. On or around the 1st day of the month go to Date Change Other."
Here is the current code:
I have googled, & have found code for between date, but not as complex. Please point me in the right direction.
MsgBox " If today is the 1st of the month, or close to the first go to Date Change - Other. Today is " & Date, vbInformation, _
"Vocational Services Reminder"
Nice, but very basic. I am trying to have the message read " Today is the XX day of the month, & there are XX days left. On or around the 1st day of the month go to Date Change Other."
Here is the current code:
Code:
Private Sub workbook_open()
MsgBox " If today is the 1st of the month, or close the first go to Date Change - Other. Today is " & Date, vbInformation, _
"Vocational Services Reminder"
Ans = MsgBox(Msg, vbYesNo, "Do you want to Go to Date Change - Other?")
Select Case Ans
Case vbYes
Sheets("Month_Source").Select
End Select
End Sub