No Menu functions/options when right clicking mouse

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

When I right click on the mouse button in excel, I no longer see any
functions/menus come available (no copy, paste, etc.). Was wondering how I
might fix this? Oh and I don't experience this probelm with any other
microsoft application (word, access, etc.) the right mouse funtionality still
works in these progrmas.
 
When you rightclick on a cell in a worksheet?

If yes...

Open excel
Hit alt-f11 to get to the VBE (where macros live)
hit ctrl-g to see the immediate window

Type this:
Application.CommandBars("Cell").enabled = True
and hit enter

Then type this:
Application.CommandBars("Cell").Reset
then hit enter

Then back to excel to test.
 
Back
Top