how do you activate the right click drop down menu in Excel?

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

Guest

I just got a new computer at work, and the right click menu doesn't work.
How do I turn that feature on again?
 
You probably had an event macro fail on you.

You will find the following on my Right Click page and are fixed in
the Visual Basic Editor (VBE)
http://www.mvps.org/dmcritchie/excel/rightclick.htm#problems

There is no right click menu (context menu missing). Try this command in the Intermediate Window (Ctrl+G) of the VBE (Alt+11)
Application.CommandBars("Cell").Reset
Missing the right click context menu for sheet tabs (fix with Ctrl+G)
Application.CommandBars("Ply").Reset
 
Back
Top