Message when opening a sheet

  • Thread starter Thread starter Jim Lavery
  • Start date Start date
J

Jim Lavery

How do I get excel to produce a message whenever a particular worksheet in a
file is accessed?
 
Right click the worksheet, view code and paste this in

Private Sub Worksheet_Activate()
MsgBox "Please read my message"
End Sub

Mike
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top