Pinaceous
Well-known Member
- Joined
- Jun 11, 2014
- Messages
- 1,124
- Office Version
- 365
- Platform
- Windows
Hi All,
I'm working with this code below that I've pasted into Sheet1 of my workbook:
I'd like to add this code to include:
If someone can help me, I'd appreciate it!
Thanks,
Pinaceous
I'm working with this code below that I've pasted into Sheet1 of my workbook:
Code:
Private Sub Workbook_Expired()
With ThisWorkbook.Sheets("Sheet1")
If Date > (.Range("D3") + 3) Then
MsgBox "This Sheet has expired!"
End If
End With
End Sub
I'd like to add this code to include:
Code:
If IsEmpty(Sheet1.Range("D3").Value) Then [QUOTE]Do nothing[/QUOTE]
If someone can help me, I'd appreciate it!
Thanks,
Pinaceous
Last edited: