Excel
Perhaps some third-party add-in you used removed the right-click menu?
Perhaps some self-generated code removed it?
Alt + F11 to open the VBE then ViewImmediate Window.
Copy this line into the window then hit enter key.
Application.CommandBars("Cell").Enabled = True
Or run this macro.
Sub reset()
Application.CommandBars("Cell").Enabled = True
End Sub
Gord Dibben MS Excel MVP
On Thu, 17 Apr 2008 11:33:01 -0700, Dave wrote:
I have a pc with excel office 2003.
When I highlight a cell and roght click no drop down menu appears.
Works in Word and I can ctrl C/ ctrl v so the software is ok
Anyone know if this is a settings problem and if so which settings?
I have never seen nor heard of this problem anywhere before
|