can't right click

S

Stan

I can't right click in Microsoft Excel 2000. Even open new documents &
restart pc the problem still remain.. I really need help..
 
N

Nick

Hi Stan

One possible cause of this could be that the menu that appears on a
worksheet when you right click has been disabled.

Open a new blank workbook.
Open up the visual basic editor (Alt+F11). Insert a new module

Type the following code

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


Run this code and see if the right click menu comes back.

Nick
 

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