Disable Help in Excel

Todd Bardoni

Well-known Member
Joined
Aug 29, 2002
Messages
3,042
How do I disable Help in Excel. I'm creating an Excel Test and want to disable Help.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Maybe these will help?

Simulating Disabling a Built-in Menu Command
You can't actually disable the built in menus, but you can make them THINK they are (on second thought, maybe this should go in the pranks thread :twisted: )

Disable all keys on the keyboard
Maybe you could have this run on workbook open, and just set it up so they enter all of their answers by mouse?

Just some ideas I found while searching for "disable help." Some days, the knowledge base is great :)
 
Upvote 0
Thanks, Von Pookie.

I already tried searching the board using "Disable Help" but all I got was a blank screen and then I tried it again and got an error message (the error came from the board). So, I figured the Search was not working today and decided to ask.

But thanks for the tip anyway! :D

Also, thanks for your help.
 
Upvote 0
I got an error message here as well, but I did my search on the knowledge base first. Basically since I know the board's search function is still acting loopy :)
 
Upvote 0
Why not just disable the F1 key in a Workbook_Open or Auto_Open event, with the code line
Application.OnKey "{F1}", ""

and restore it at Close with
Application.OnKey "{F1}"

and regarding the Help menu item, try something like this, also at open and close as you prefer, or in the worksheet module depending on what you're trying to control:

On Error Resume Next
CommandBars("Worksheet Menu Bar").Controls("Help").Enabled = True 'False
 
Upvote 0

Forum statistics

Threads
1,223,727
Messages
6,174,146
Members
452,547
Latest member
Schilling

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top