Right Mouse Functions in Excel

linda53

New Member
Joined
Oct 12, 2006
Messages
2
I have excel 2000
when I click in a cell that has data and choose my right mouse button, the following options are in gray and not available:

Cut
Copy
Paste
Paste Special
Clear contents
Format cells

In order to use any of these functions, I have to click in the cell and go to the top of the screen to a pull down menu or icon.

Any suggestions? I even re-installed the program and asked the IT guys at work and they had no answer. :rolleyes:
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Linda,
You may have the Essbase addin, which has a control switch in a dropdown menu that alters the secondary mouse button function. Change that setting and see what you get... More specific info may be available to you from a prior post on Essbase... just search this site for Essbase and mouse and right...
Good Luck! /s/ Larry
 
Upvote 0
Try running this code :-

Code:
Dim icbc As Integer, cbcs As CommandBarControls
Set cbcs = Application.CommandBars("Cell").Controls
For icbc = 1 To cbcs.Count
     cbcs(icbc).Enabled = True
Next icbc
 
Upvote 0
Right Mouse Function

Thank you for your help. It enabled me to know a little more of the issue. Although your suggestion didn't quite work, I was able to go the microsoft website and find a similar question.

What was suggested worked for me. It is as follows, for anyone else that may have the same problem.

Alt-F11 (to get to VBE)
Ctrl-G (to go to immediate window)

Type:
Application.commandbars("Cell").enabled = true
Alt-Q

Thanks again for leading me down the right path..... :biggrin:
 
Upvote 0

Forum statistics

Threads
1,214,376
Messages
6,119,174
Members
448,870
Latest member
max_pedreira

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top