How to restore excel right-click menu
Open the Excel table, press the Alt F11 key, and open the VBE editor , insert a module, paste the following code, and press F5 to run to restore.
Recommended tutorial: excel tutorial
sub Restore the right-click menu ()
Application.CommandBars("Cell").Enabled = True Application.CommandBars("column").Enabled = True Application.CommandBars("row").Enabled = True Application.CommandBars("ply").Enabled = True End sub
The above is the detailed content of excel right click menu recovery. For more information, please follow other related articles on the PHP Chinese website!