Private Sub Worksheet_BeforeRightClick(ByVal Target As Range, Cancel As Boolean)
Target.Select
Application.EnableEvents = False
Application.ScreenUpdating = False
If Not Intersect(Target, Range("G7:G20000")) Is Nothing And Target.Count = 1 Then
Target.Offset(0, 6) = ""
Target.Offset(0, 7) = ""
Target.Offset(0, 8) = ""
Target.Select
Selection.Copy
End If
If Not Intersect(Target, Range("h7:h20000")) Is Nothing And Target.Count = 1 Then
ActiveSheet.Unprotect Password:="Krameri"
Target.Offset(0, 5) = ""
Target.Offset(0, 6) = ""
Target.Offset(0, 7) = ""
Target.Select
Selection.Copy
End If
Application.EnableEvents = True
Application.ScreenUpdating = True
Cancel = True
End Sub