Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then
If LCase(Target.Value) = "green" Then macro2
End If
End Sub
Thanks for reply. A1 is a result from an if formula. =If(D1>60,"Green","Red") does that help??
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "[COLOR="Red"]$D$1[/COLOR]" Then
If LCase(Range("[COLOR="Red"]A1[/COLOR]").Value) = "green" Then macro2
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "[COLOR="Red"]$D$1[/COLOR]" Then
If [COLOR="Red"]Target.Value > 60[/COLOR] Then Macro2
End If
End Sub