Excel

  • Thread starter Thread starter Dave
  • Start date Start date
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top