
If Not Intersect(ActiveCell, Range("C5:H10")) Is Nothing Then
If ActiveCell.Interior.ColorIndex = 3 Then
ActiveCell.Interior.ColorIndex = 4
Else
ActiveCell.Interior.ColorIndex = 3
End If
End If
|
