J Jim Lavery Jun 10, 2008 #1 How do I get excel to produce a message whenever a particular worksheet in a file is accessed?
M Mike H Jun 10, 2008 #2 Right click the worksheet, view code and paste this in Private Sub Worksheet_Activate() MsgBox "Please read my message" End Sub Mike
Right click the worksheet, view code and paste this in Private Sub Worksheet_Activate() MsgBox "Please read my message" End Sub Mike
J Jim Lavery Jun 10, 2008 #3 Cheers Mike, just what I wanted Jim Mike H said: Right click the worksheet, view code and paste this in Private Sub Worksheet_Activate() MsgBox "Please read my message" End Sub Mike Click to expand...
Cheers Mike, just what I wanted Jim Mike H said: Right click the worksheet, view code and paste this in Private Sub Worksheet_Activate() MsgBox "Please read my message" End Sub Mike Click to expand...
M Mike H Jun 10, 2008 #4 Your welcome Jim Lavery said: Cheers Mike, just what I wanted Jim Click to expand...