Select Case Sh.Name
Case Is = "Sheet1"
'Disable copy and paste for anything in column A:E, G, P, Q & R
If InRange(rng, Union(Columns("A:E"), Columns("G"), Columns("P"), Columns("Q"), Columns("R"))) Then
Call ToggleCutCopyAndPaste(False)
Else
Call ToggleCutCopyAndPaste(True)
End If