No Menu functions/options when right clicking mouse

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.
 
D

Dave Peterson

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.
 

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

Top