Disabling Cut Copy Paste Drag Drop In Workbook

da1hard

New Member
Joined
Jul 4, 2013
Messages
6
Hi everyone,

Having difficulty trying to prevent user error in an excel workbook i have created.

Trying to disable Cut/Copy/Paste/Drag&Drop in all worksheets except one specific worksheet

I need to allow copy from one specific sheet and allow it to paste into another workbook.

The problem i got is when go to paste to another workbook the copy data has gone


VBA Code:
Private Sub Workbook_Activate()

    If ActiveSheet.Name = "Export" Then
        Application.CutCopyMode = True
        Application.OnKey "^c", ""
        Application.CellDragAndDrop = True

    Else

        Application.CutCopyMode = False
        Application.OnKey "^c", ""
        Application.CellDragAndDrop = False

    End If
    
End Sub

Private Sub Workbook_Deactivate()

        Application.OnKey "^c", ""
        Application.CellDragAndDrop = True
        Application.CutCopyMode = True
End Sub

Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)

On Error Resume Next

    If Sh.Name = "Export" Then
        Application.CutCopyMode = True
        Application.CellDragAndDrop = True

    Else

        Application.OnKey "^c", ""
        Application.CutCopyMode = False
        Application.CellDragAndDrop = False

    End If

End Sub

Private Sub Workbook_SheetDeactivate(ByVal Sh As Object)

        Application.CellDragAndDrop = True
        Application.CutCopyMode = True

End Sub
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.

Forum statistics

Threads
1,214,606
Messages
6,120,487
Members
448,967
Latest member
visheshkotha

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