If Target.Address =$A$1 or Target.Address = $C$2 or Target.Address = $D$9 then
Do Something
Hui,
Thanks. Oversight when writing code and not testing.
If Not Intersect(Target, Range("A1,C2,D9")) Is Nothing Then
'do something
End If
Set RngDetect = Range("A1,C2,D9")
If Not Intersect(Target, RngDetect) Is Nothing Then
'do something
End If
Set RngCellsToProcess = Intersect(Target, Range("A1,C2,D9"))
If Not RngCellsToProcess Is Nothing Then
For Each cll In RngCellsToProcess.Cells
'do something
Next cll
End If