Right click menu - how to reset?

MegWump

New Member
Joined
Feb 20, 2009
Messages
33
Hi,
I've had a workbook customised for me by someone who can do vba and some coding.

The workbook involved a lot of ribbon customisation, but also included customising the menu that appears when you right click. Unfortunately, this menu is appearing on all my excel workbooks (despite that workbook that should have it not having been used for several days, so it's not about an open instance of excel) and it means I can't do a lot of the simple tasks I'm used to.

Can anyone walk me through how to reset it to the default?

I know how to turn on the developer tab and that's about it!
 
could you move a copy of the workbook to an external hard drive, then delete it from your working drive ?
 
Upvote 0
There are several right-click menus. On the assumption you are talking about the Cell menu, open the VB Editor (Alt+f11), then the Immediate Window (Ctrl+G), type:
Code:
Application.Commandbars("Cell").Reset
and press enter.
 
Upvote 0
There are several right-click menus. On the assumption you are talking about the Cell menu, open the VB Editor (Alt+f11), then the Immediate Window (Ctrl+G), type:
Code:
Application.Commandbars("Cell").Reset
and press enter.

Belated thanks for this – It worked and I appreciate it
 
Upvote 0
You're welcome - glad it helped. :)
 
Upvote 0
Many thanks to RoryA for that suggestion. Two years and nine months after your reply to MegWump, this tip was of tremendous help to me.

The only difference is that my Rightclick Cell Menu problem was self-inflicted. This has been a lesson learned, the easy way, thanks to you.
 
Upvote 0
Hi,
what about the horizontal right-click mouse menu.
Mine has vanished... 🤷‍♂️
 

Attachments

  • Screenshot 2024-12-24 112126.jpg
    Screenshot 2024-12-24 112126.jpg
    58.6 KB · Views: 16
Upvote 0
Use this in the immediate window:

VBA Code:
application.ShowMenuFloaties = false

Note that the values are completely counterintuitive!
 
Upvote 0
... Or from the ribbon: File/Options/General tab, check the box "Show Mini Toolbar on selection".

Artik
 
Upvote 0

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