POP-UP MESSAGE IN EXCEL

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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.
 
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.
 
Back
Top