Right Click on Mouse doesn't work in Excel 2003

R

Raghu

I have tried installing the office twice with same result.
I am not able to set properties or insert cells using
right click on the mouse, seems like it is disabled. It
works with other office packages and I can change
properties on sheet name in excel. Is there a setting
where this feature is disabled?
 
F

Frank Kabel

Hi
what exactly does happen:
- do you see a context menu
- are the options greyed-out
- etc
 
R

Raghu

No the menu doesn't pop-up at all. It doesn't pop-up only
in excel spread sheet, but the corresponding menu for
ex.right click on sheet name and try to insert a new sheet
works. Similarly right click on a cell, you don't see the
corresponding pop-up menu.
 
R

Ron de Bruin

Try to run this macro

Sub ResetCellmenu()
With Application.CommandBars("Cell")
.Reset
.Enabled = True
End With
End Sub
 
R

Ron de Bruin

Hi

This is difficult to say.
Maybe a bad Add-in ?

This can also be a corrupt or bloated toolbar file
The .xlb file has all Toolbar customization in it.

Close Excel
Do a search for .xlb in windows
Rename the file you find (my file is named Excel10.xlb in 2002)
Start Excel

Deleting the file or renaming will do no harm on your system
Excel will create a new one for you.
(You lost your customization remember that)

If you make your own toolbars or add buttons to the others
This file is important (backup it so you can restore it)
 
Top