Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
If Application.CutCopyMode = xlCut Then
MsgBox "Please DO NOT Cut and Paste. Use Copy and Paste, then delete the source if necessary."
Application.CutCopyMode = False
End If
End Sub