CHANGE RIGHT CLICK OPTIONS

G

gams sb

Hi
In Excel 2003, the right click options list includes a research option that
pops up on me routinely. It's very irritating, esp. if I am just about to
paste something because once the research window opens the paste option is
also gone and must copy again. Any way to turn this off or remove from
right-click menu?
Thanks!!
 
R

Ron de Bruin

Only possible with VBA


If I have the correct number this will disable the option
Run the macro one time

Sub test()
On Error Resume Next
Application.CommandBars("Cell").FindControl(ID:=7343).Enabled = True
On Error GoTo 0
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top