right clcik menu

J

j

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
 
G

Gord Dibben

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
 
Top