Thanks WinteE,
Now amended
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("A:A")) Is Nothing Then
Dim i As Integer
On Error GoTo trap:
i = WorksheetFunction.Find("/", Target)
If Val(Right(Target, Len(Target) - i)) _
> Val(Left(Target, i - 1)) Then
With Target.Characters(Start:=i + 1, Length:=999).Font
.FontStyle = "Bold"
.ColorIndex = 3
End With
Else
With Target.Font
.FontStyle = False
.ColorIndex = xlAutomatic
End With
End If
End If
trap:
End Sub
VBA Noob
Bookmarks