Forum Discussion
Excel - How to remove "Search the menus" in right-click menu options
Hello all,
Just today I noticed when I right-clicked in an open Excel tab, the top-most option (normally "Cut") has been replaced by a search bar with "Search the menus" appearing in it automatically. I've looked all over Excel's options & searched across several forums but couldn't find anything about it. This is really throwing off years of muscle-memory & I'd like to remove/disable it or at the very least move it to the bottom where it won't be such an annoyance. Please let me know if this is possible, Thanks!
17 Replies
- The_mad_IrishmanCopper Contributor
Try this, Grant :
1. Go to the green Excel Home ribbon on the left of the screen.
2. Go to the bottom of the ribbon and click "Options"
3. Under the "General Tab" in the left menu, click " User Interface Options"
4. Tick the green box " Collapse the ribbon automatically"
5. Save and Exit.
Job done! This worked for me - hope that it will help others with the same , (very annoying") problem.- TiafowlerCopper ContributorThis just helped me. Thanks so much!
- Mel_GCopper Contributor
This worked for me to get my context menu back.
- ThalassiaCopper Contributor
Grant_KingI, too hate this stupid menu. It drives me batty and I do not understand why there is no way to remove it. OI don't mind making things easier for people who don't use Excel that much, but there's no excuse for making it more difficult for people who use it all the time.
- Patrick2788Silver Contributor
You could use the Feedback feature built into Excel through File | Feedback | Send a frown. This forum is mostly volunteers that are not employed by Microsoft. Occasionally, Microsoft people will post here but the feedback feature is a better way to be heard.
- mrbradwilliamsCopper Contributor
Done. I had no idea about the "Send a Frown" feedback option. My main purpose of venting here was to commiserate and maybe get a workaround. The idea that a comment of mine to an Excel workgroup would actually get to someone who could do something about it never occurred to me.
I eat, sleep, and breathe Excel. I dream in Excel workbooks. I daydream while driving or in the shower about better ways to utilize Power Query. To have such a fundamental change to my unconscious workflow, whipped up like a whim, has left me demoralized and doubting the future of robust applications that provide a keyboard based alternative to silly menus designed by those who don't use them in their daily lives.
Say, "NO!" to Big Menu, people! Our workflow needs not be influenced by menu redesign!
- Damien17Copper ContributorI'm not a fan of this at all. It feels like it has been added to support general/basic excel users, unfortunately, they have discarded advanced users' UX. All they need to do is add an option to disable it. There is already a search bar at the top of the app and it already has a shortcut assigned... why the need to add it to a right click as well?!?!
- Nothing_Left_to_LoseCopper Contributor
The VBA code to remove an item from the Cell right-click menu is only one line.
A possible catch is that the name of the item to remove must match exactly with what appears on the menu.
And, and, and any character that is underlined in that items name must have the "&" sign in front it.
So the code is...
'---
Sub RelievePain()
Application.CommandBars("Cell").Controls("Search the Menus").Delete
End Sub
'---
The control name in the above must have the "&" sign entered (no quote marks)
As I dont have the control on my excel version, it is up to you to place it properly.
Matching the case of the characters on the menu should also be done.
'---
Nothing Left to Lose
https://1drv.ms/u/s!Au8Lyt79SOuhZw2MCH7_7MuLj04?e=sAwbHU
(free excel programs)- hgitz_GujCopper Contributor
That was a a tip in the right direction, BUT I have listed all Application.CommandBars and there is no "Search the menus" entry. I have also tried MenuRighter with the same result. (About the & sign issue, I looked at the menu entries one by one instead of searching).
It seems "Search the menus" is hidden somewhere else.
Microsoft® Excel® for Microsoft 365 MSO (Version 2211 Build 16.0.15831.20220) 32-bit
- jcomerCopper Contributor
Grant_King I am also wanting to know how to remove this feature as everyone in our office finds this annoying and it slows down our progress. Microsoft where are you?
- SoUncreativeCopper Contributoran add-in called MenuRighter may be an easier way
- SoUncreativeCopper Contributor
I can't tell you how many times I'm hit that stupid search field in the last few days! right-click is my best friend and now it SUCKS. google suggests there are ways to tweak the menu by going through VBA but I haven't had time to work through to prove it yet.
- Grant_KingCopper Contributor
SoUncreativeTotally! I read that too, but I feel like I shouldn't have to use VBA or friggin' edits to the Registry when a simply check-box to "turn off search feature" should just be there automatically...
- martinlauCopper ContributorYou are not the only two persons. @Grant_King Andrew_Edgar
- Andrew_EdgarCopper Contributor
Glad to see im not the only person that finds this annoying......
also looking for a way to edit or delete the 'Serarch the menus' option.