Customizing context menus

AutoFilterQueen

Board Regular
Joined
Sep 28, 2011
Messages
90
I am running Excel 2013. Using VBA, I have customized the context menu so that when I right-click on a cell it shows only two options: Edit Name and Remove. However, above these two remaining options, there is a rectangle with buttons representing various formatting changes I could make to the cell: font, font size, bold, italic, font color, fill color, etc. I believe this rectangle did not exist in Excel 2007 but is present in Excel 2010 and 2013. Is it possible to get rid of this rectangle? If so, how? I don't know what it is called so I don't know what to search for. Thanks in advance for your help!
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Are you referring to the Mini Toolbar?

From File>Options>General - untick the checkbox beside "Show minitoolbar on selection"
 
Upvote 0
This may seem counter-intuitive, but

application.ShowMenuFloaties = True 'hides the minitoolbar
application.ShowMenuFloaties = false 'shows the minitoolbar
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,444
Members
452,326
Latest member
johnshaji

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