ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Missing Shortcut Menu (https://www.excelbanter.com/excel-discussion-misc-queries/98618-missing-shortcut-menu.html)

Scorpvin

Missing Shortcut Menu
 

Please help! When I right click in a cell my Shortcut Menu does not
appear. How can I fix this?


--
Scorpvin
------------------------------------------------------------------------
Scorpvin's Profile: http://www.excelforum.com/member.php...o&userid=27678
View this thread: http://www.excelforum.com/showthread...hreadid=560187


jetted

Missing Shortcut Menu
 

hi

Temporary workaround
Can you try if shift+f10. You should see your short menu appearing.


--
jetted
------------------------------------------------------------------------
jetted's Profile: http://www.excelforum.com/member.php...o&userid=17532
View this thread: http://www.excelforum.com/showthread...hreadid=560187


jetted

Missing Shortcut Menu
 

hi

The following code will toggle on and off all the short cut menus,
including
the toolbar selection menu, and toggle access to the Customize command

Sub ShortCutsToggle()
For Each cmb In CommandBars
If cmb.Type = msoBarTypePopup Then
cmb.Enabled = Not cmb.Enabled
End If
Next cmb
With CommandBars("Toolbar List")
.Enabled = Not .Enabled
End With
With CommandBars("Tools").Controls("Customize...")
.Enabled = Not .Enabled
End With
End Sub


--
jetted
------------------------------------------------------------------------
jetted's Profile: http://www.excelforum.com/member.php...o&userid=17532
View this thread: http://www.excelforum.com/showthread...hreadid=560187



All times are GMT +1. The time now is 06:10 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com