Try using the Worksheet_Activate event. Just open up the
VB macro editor and from the project explorer, choose the sheet for which you want to display the message, and paste in a sub like this:
Code:
Private Sub Worksheet_Activate()
MsgBox "hello from " & Me.Name
End Sub
BTW its no bother - ask as many questions as you like.
rgds
Phil