Right Click Function

  • Thread starter Thread starter Mollie
  • Start date Start date
M

Mollie

The right click function does not work in Excel. However,
it works just fine in all other applications. What am I
missing?
 
Hi Mollie,

What does the right-click not work on, you probably had
a macro or addin fail. Think of what you were last working with
before you had your problem. If you had been working with
macros, I'd give the following a shot.

Sub Fix_Things()
Application.Commandbars("Ply").Enabled = True 'Rclick on WS Tab
Application.DisplayAlerts = True
Application.EnableEvents = True 'WS Events
End Sub
 
Just adding to David's code, I would enable the "Cell" menu, too.

Application.CommandBars("Cell").Enabled = True


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com (e-mail address removed)
 
The right click has never worked when it comes to
highlighting cells to copy, paste, format, etc.
 
Mollie

The right-click in Excel was not designed to highlight cells. You must
highlight cells using the left-click then hit right-click to get a menu.

Gord Dibben Excel MVP - XL97 SR2 & XL2002
 
Mollie

The right-click in Excel was not designed to highlight cells. You must
highlight cells using the left-click then hit right-click to get a menu.

I actually DOES work for a single cell.
 
Back
Top