If Not Application.Intersect(Target, KeyRange) is Nothing Then
For Each OneCell in Application.Intersect(Target, KeyRange).Cells
Rem routine for oneCell
Next oneCell
End If
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If 0 < Application.CutCopyMode Then
Target.Copy
End If
End Sub