Right Click problem

G

Guest

For some reason my right click does not work in my current version of Excel
(2003). I like to use it to manipulate charts and spreadsheets. I can right
click in other MS applications such as Explorer and Word. I have dug through
the options menus, but haven't seen anything that will fix my problem. Does
anyone have any suggestions that will make this work.

Thanks
 
G

Guest

There are 2 possible reasons that I can think of off the top of my head. One
would be that you have bee writing code and done something to kill you right
click. The other possible would be that you have downloaded or installed an
addin that overrides your right click. A couple of possibles would be
Essbase or Cube Analysis or...
 
G

Gord Dibben

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

But...as Jim points out.you might have a program that is hi-jacking the r-click
menu.

Look for that if the above brings no joy.


Gord Dibben MS Excel MVP

For some reason my right click does not work in my current version of Excel
(2003). I like to use it to manipulate charts and spreadsheets. I can right
click in other MS applications such as Explorer and Word. I have dug through
the options menus, but haven't seen anything that will fix my problem. Does
anyone have any suggestions that will make this work.

Thanks

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

Top