A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
First thing to try is to use Excel in Safe mode - hold down Ctrl while launching Excel. That prevents add-ins and startup programs from being loaded.
Now try the right-clicking operation that was misbehaving.
a) If it doesn't happen then the problem is caused by some add-in or a workbook that is loaded on startup. Disable all add-ins ( File > Options > Add-Ins ).
Move any files from your XLSTART folders.
- They vary according to username, Excel version and Windows version.
- From the immediate window of the VB editor you can find those folders by:
- ?Application.StartupPath
- ?Application.Path ' and then add \XLSTART to the result
- ?Application.AltStartupPath ' corresponds to File > Options > Advanced > General > At startup, open all files in
You can then add things you need back in one at a time, repeating your test each time and so discover which is causing the problem.
b) If it still happens in Safe Mode, try doing a repair from Control Panel > Programs and Features > Microsoft Office > Change > Repair.
c) If it still happens, try
Alt+F11 to VB editor
Ctrl+G to immediate window, and type
Application.CommandBars("Row").Reset
and hit the Enter key