Can't Paste in a cell

Marcy

New Member
Joined
Aug 14, 2006
Messages
14
I have a very advanced spreadsheet from someone else that I need to paste data into and it won't let me.

I know:
The sheet isn't protected under data--> protection
I can edit the cell and type in data
There is validation that I can erase and still can't paste
I can't ctrl-V, edit-->paste special, right click paste

Ten years of working in Excel and I can't seem to figure out what I'm sure is a simple something somewhere!

Thank you.
Marcy
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)

texasalynn

Well-known Member
Joined
May 19, 2002
Messages
8,458
I hope you meant Ctrl +C(copy), not Ctrl +V (paste), 'cuz you have to copy before you paste. :)

is there a macro that is controlling the paste to cells and/or sheet?
 
Upvote 0

Marcy

New Member
Joined
Aug 14, 2006
Messages
14
Yes after copying :). There is a laundry list of macros. Any idea what type of coding I should be looking for in the VB code that would make you unable to copy paste into cells?
 
Upvote 0

VoG

Legend
Joined
Jun 19, 2002
Messages
63,650
The code for disabling the cut, copy and paste keyboard shortcuts is

Code:
Application.OnKey "^{c}", "" 'Copy
Application.OnKey "^{v}", "" 'Paste
Application.OnKey "^{x}", "" 'Cut

but I guess there might be other ways.
 
Upvote 0

Marcy

New Member
Joined
Aug 14, 2006
Messages
14
Thank you for the fast response. I continue to be amazed at these boards and all of you amazing, helpful people!

Unfortunately, I was unable to locate any code that looked like that. Inefficiency here I come...!
 
Upvote 0

Forum statistics

Threads
1,191,483
Messages
5,986,848
Members
440,053
Latest member
jhollingworth

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
Top