How do I delete "Type A Question for Help"

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

Guest

Good morning all (collective groan from Tom, Ron & Chijanzen)

Can anyone tell me how to reference the "Type a question for help" tool that
appears on the MenuBar. I know how to delete it, once I can reference it,
it's the first bit that's puzzling me.

Thanks in advance

Pete
 
Hi Peter

Type a question for Help

If you want to remove "Type a question for Help" on the Worksheet Menu Bar then you can use this line.
Application.CommandBars.DisableAskAQuestionDropdown = True 'True = hidden and False = visible
 
Don't forget to test the Excel version before you run the code

If Val(Application.Version) > 9 Then
 
Peter,

I too determined whether has the help

try it,

Application.CommandBars.DisableAskAQuestionDropdown = False
 
Back
Top