Hello, I have a small script and it works for what it is designed for
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("G1:G600")) Is Nothing Then
Target.Copy
End If
End Sub
Basically it does is monitor G column and when I click...