Forum Discussion
Emil Garnev
Jun 15, 2018Copper Contributor
Mouse right click pop-up menu stopped working in Excel 2013
Hello, I am using Excel for a long time. Since 2 days (probably I did some wrong shortcut key combination??) I cannot open pop-up menu with right click of the mouse. Right click works everywhere in...
- Jun 15, 2018Open the VBA editor (alt+F11), press control+g. Type this text:
Application.CommandBars("Cell").Reset
At the end of that line, press enter.
If that does not help, repeat the above with:
Application.CommandBars("Cell").enabled=true
JKPieterse
Jun 15, 2018Silver Contributor
Open the VBA editor (alt+F11), press control+g. Type this text:
Application.CommandBars("Cell").Reset
At the end of that line, press enter.
If that does not help, repeat the above with:
Application.CommandBars("Cell").enabled=true
Application.CommandBars("Cell").Reset
At the end of that line, press enter.
If that does not help, repeat the above with:
Application.CommandBars("Cell").enabled=true
a8a8u
Jan 22, 2022Copper Contributor
It worked. Thank you!