Right mouse Clicking

G

Guest

Help
Using Excel 2003. Yesterday when I was in any cell and did a right mouse
click I would get all sorts of options (Cut, Paste, Format, Column width,
etcc). Now I only get cut and paste. Where can I reset this.
Thanks
 
G

Gord Dibben

Are the other menu items there but just not available as in "grayed out"?

Your worksheet may be protected.

Tools>Protection>Unprotect Sheet.

Are the items missing completely?

You can try to reset the right-click menu.

Hit ALT + F11 to go to the VBEditor.

Then View>Immediate Window.

Copy/paste this line into the window and hit <enter>

Application.CommandBars("Cell").Enabled = True

OR copy/paste this sub to a module and run it.

Sub reset()
Application.CommandBars("Cell").Enabled = True
End Sub


Gord Dibben MS Excel MVP


Help
Using Excel 2003. Yesterday when I was in any cell and did a right mouse
click I would get all sorts of options (Cut, Paste, Format, Column width,
etcc). Now I only get cut and paste. Where can I reset this.
Thanks

Gord Dibben MS Excel MVP
 
G

Gord Dibben

Thanks for the correction Ron.

These canned responses can lead to some interesting "typos".


Gord
 

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