copy using right click

  • Thread starter Michael Garland
  • Start date
M

Michael Garland

I was always able to highlight cells , right click to copy then right click
to paste. now nothing happens when I right click
 
D

davesexcel

Hi Michael,

Do you have a right click event, maybe it is interfering with your
right click menu
 
R

Ron de Bruin

Hi Michael

Is this in every file you open ?

Try to reset you Cell menu

Alt -F11 (open the VBA editor)
Ctrl-g (open immediate window)
Paste this code line
Application.CommandBars("Cell").Reset

And press Enter


Alt-q to go back to Excel
 
M

Michael Garland

now every excel file does this. used to be able to right click and choose
copy. i tryed you suggestion but nothing changed
 
R

Ron de Bruin

You can try it again with this first

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


and then with this

Application.CommandBars("Cell").Reset
 
Top