Right-click menus

G

Gord Dibben

Perhaps your right-click on a tab has been altered.

Hit ALT + F11 to go to the VBEditor.

Then View>Immediate Window.

Copy/paste this line into the window and hit <enter>

Application.CommandBars("Cell").Enabled = True

OR copy/paste this sub to a module and run it.

Sub reset()
Application.CommandBars("Cell").Enabled = True
End Sub


Gord Dibben MS Excel MVP


how do I display the right-click menu in Excel 2003, ie for copying, pasting
etc.

Gord Dibben MS Excel MVP
 
Top