Missing Shortcut Menu

S

Scorpvin

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

jetted

hi

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

jetted

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
 
Top