There is no trigger event on a format change, however this code might help you achieve what you want.
It will sort out your font colours as per the request if you click in column F, after you've changed your font colour.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim ocell As Range
If Not Intersect(Target, Range("F:F")) Is Nothing Then
For Each ocell In Range("F:F")
If ocell.Font.ColorIndex = 3 Or ocell.Font.ColorIndex = 1 Then
Range("G" & ocell.Row & ":J" & ocell.Row).Font.ColorIndex = ocell.Font.ColorIndex
End If
Next ocell
End If
End Sub
Bookmarks