Excel

D

Dave

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
 
G

Gord Dibben

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 View>Immediate 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
 
Top