Right click menu gone?

W

wachen

a co-worker is telling me that in Excel when he right clicks a cell,
the usual right click menu does not show up. I cannot find in Excel
any options that I can set to get this feature back. Any ideas?

Thanks
 
J

Jason Morin

Try this: press Alt+F11, go to Insert > Module, paste in
the code below, and then run the macro:

Sub BringitBack()
CommandBars("Cell").Enabled = True
End Sub

HTH
Jason
Atlanta, GA
 
Top