Allow some column to copy and paste

Abdulkhadar

Board Regular
Joined
Nov 10, 2013
Messages
165
Office Version
  1. 2019
  2. 2010
Platform
  1. Windows
Hi Excel Experts,
In the protected sheet I want to allow user only copy and paste at column C and D, not to allow cut and paste. In this sheet some columns (Except C & D) are having data validation and some columns are formula. but i want to allow user to only copy and paste data from other sources at column C and D.

Thanks in advance.
 
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim uRng As Range, r As Long
    r = Me.Rows.Count - 14
    Set uRng = Union(Range("C15:D15").Resize(r), Range("F15").Resize(r), Range("M15").Resize(r))

    If Not Intersect(Target, uRng) Is Nothing Then
        If Application.CutCopyMode = 2 Then
            Application.CutCopyMode = 0
            MsgBox "Cut & Paste not permitted here" & vbCr & "use Copy  & Paste", vbExclamation, "STOP"
        End If
    Else
        Application.CutCopyMode = 0
    End If
End Sub
(y) THANKS ONCE AGAIN.
 
Upvote 0

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.

Forum statistics

Threads
1,214,416
Messages
6,119,386
Members
448,891
Latest member
tpierce

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