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

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
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
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
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
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,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

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