Hi
I am new to macros. I have written the following code to prevent anyone from copy/pasting the values to validated cell which is activated whenever the selection changes in the worksheet.
Sub DisablePaste()
Dim X As Variant
On Error Resume Next
X = ActiveCell.Validation.Type
If Not...