Sub Worksheet_SelectionChange(ByVal Target As Range) 'single click version
If Intersect(Target, Range("B2:G10")) Is Nothing Then Exit Sub
ActiveCell.Copy
End Sub
Sub Worksheet_SelectionChange(ByVal Target As Range) 'single click version
If Intersect(Target, Range("B2:G10")) Is Nothing Then
Application.CutCopyMode = False 'clears clipboard and stops cell flashing - like pushing escape key
Exit Sub
Else
ActiveCell.Copy
End If
End Sub