Right mouse menus not appearing in Excel

R

Rita

My right mouse button no longer seems to function in
Excel 2002. All other aps are fine (Word, Windows,
Outlook, etc). This is a problem for all my Excel
spreadsheets.

Any suggestions...

Rita
 
R

Ron de Bruin

Hi Rita

Try to run this macro to reset it

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