right clcik menu

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

no right click menu appear when i right click in excel...

pls advise on how to get back the right click menu

thanks and happy new year
 
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").Reset

OR copy/paste this sub to a module and run it.

Sub reset()
Application.CommandBars("Cell").Reset
End Sub


Gord Dibben MS Excel MVP

no right click menu appear when i right click in excel...

pls advise on how to get back the right click menu

thanks and happy new year

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

Back
Top