can't right-click

S

Stan

I can't right click in Microsoft Excel 2000. Even create new documents or
restart pc. Please Help!!!
 
P

papou

Hello Stan
Simply try: Tools>Customize>Tool bars tab then click Reset button and OK
If still not available:
Paste and run the code below into a new module of a blank workbook
Sub ResetCbs()
For Each cb In Application.CommandBars
If cb.BuiltIn Then cb.Reset
Next cb
End Sub

HTH
Cordially
Pascal
 
Top