Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("B:B")) Is Nothing Then
If Target.HasFormula Then
Target.Interior.Color = xlNone
Else
Target.Interior.Color = vbRed
End If
End If
End Sub
Thanks....I think this helps a lot.
But is there any easier way than coding the sheet?
The constant is a number, so the format has to be "value", not text.
thanks in advance.