G Guest Jan 24, 2006 #1 how do I display the right-click menu in Excel 2003, ie for copying, pasting etc.
G Gord Dibben Jan 24, 2006 #2 Perhaps your right-click on a tab has been altered. Hit ALT + F11 to go to the VBEditor. Then View>Immediate Window. Copy/paste this line into the window and hit <enter> Application.CommandBars("Cell").Enabled = True OR copy/paste this sub to a module and run it. Sub reset() Application.CommandBars("Cell").Enabled = True End Sub Gord Dibben MS Excel MVP how do I display the right-click menu in Excel 2003, ie for copying, pasting etc. Click to expand... Gord Dibben MS Excel MVP
Perhaps your right-click on a tab has been altered. Hit ALT + F11 to go to the VBEditor. Then View>Immediate Window. Copy/paste this line into the window and hit <enter> Application.CommandBars("Cell").Enabled = True OR copy/paste this sub to a module and run it. Sub reset() Application.CommandBars("Cell").Enabled = True End Sub Gord Dibben MS Excel MVP how do I display the right-click menu in Excel 2003, ie for copying, pasting etc. Click to expand... Gord Dibben MS Excel MVP