View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gord Dibben
 
Posts: n/a
Default Right-click menus

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

Hit ALT + F11 to go to the VBEditor.

Then ViewImmediate 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


On Tue, 24 Jan 2006 11:00:38 -0800, elaine
wrote:

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


Gord Dibben MS Excel MVP