POP-UP MESSAGE IN EXCEL

C

Carolan

In Excel, is there a way of creating a pop-up message that would work the
same way as the F1 for help? I would like to add a note that would appear
anywhere on the sheet if I pressed a specific key.
 
J

JE McGimpsey

Just assign a shortcut key to

Public Sub MyHelp()
MsgBox "Your Help message goes here"
End Sub


using Tools/Macro/Macros/Options, or using Application.OnKey to set the
shortcut.
 
C

Carolan

Great!! Thank you very much.
--
Carolann


JE McGimpsey said:
Just assign a shortcut key to

Public Sub MyHelp()
MsgBox "Your Help message goes here"
End Sub


using Tools/Macro/Macros/Options, or using Application.OnKey to set the
shortcut.
 
Top