Results 1 to 20 of 26

Thread: Disable Cut, Copy, Paste Macro for One Column

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #14
    VBAX Sage SamT's Avatar
    Joined
    Oct 2006
    Location
    Near Columbia
    Posts
    7,709
    Location
    fyrigoyeno,

    This might work

    Case "PROVEEDORES"
    If Not Intersect(Selection, Sh.Columns(13)) Is Nothing Then
       ToggleCutCopyAndPaste Intersect(Selection, Sh.Columns(13)) Is Nothing
       ElseIf Not Intersect(Selection, Sh.Columns(17)) Is Nothing Then
       ToggleCutCopyAndPaste Intersect(Selection, Sh.Columns(17)) Is Nothing
    End If
    Last edited by Aussiebear; 04-08-2023 at 04:10 AM. Reason: Adjusted the code tags
    Please take the time to read the Forum FAQ

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •