Hi,
I want a box to pop up when a worksheet is activated to alert the user to delete the sheet if they are not using it. So far I have:
[vba]Private Sub Worksheet_Activate()
MsgBox "Not using Census Data? Delete this tab!", vbInformation + vbOKOnly, "WARNING"
End Sub[/vba]
I'm feeling a bit stupid - but how to I get the alert to appear ONLY once, and not every time the worksheet is activated in that session?
Cheers
-Clueless
I want a box to pop up when a worksheet is activated to alert the user to delete the sheet if they are not using it. So far I have:
[vba]Private Sub Worksheet_Activate()
MsgBox "Not using Census Data? Delete this tab!", vbInformation + vbOKOnly, "WARNING"
End Sub[/vba]
I'm feeling a bit stupid - but how to I get the alert to appear ONLY once, and not every time the worksheet is activated in that session?
Cheers
-Clueless