Alan, based on your file the below should work (?) - replacing existing Calculate event in full
Private Sub Worksheet_Calculate()
Dim lngChar As Long, vData As Variant, rngCell As Range
On Error GoTo ExitPoint
Application.EnableEvents = False
For Each rngCell In Range("H4:H11").Cells
vData = Application.Transpose(Application.Transpose(rngCell.Offset(, -3).Resize(, 3).Value))
With rngCell
.Value = Join(vData, "")
For lngChar = 1 To Len(.Value)
.Characters(lngChar, 1).Font.ColorIndex = 1 - (Mid(.Value, lngChar, 1) = "c")
Next lngChar
End With
Next rngCell
ExitPoint:
Application.EnableEvents = True
End Sub
That said would it not be easier to simply use conditional formatting ?
ie populate I onwards with c/g based on B:D and format both fill & font accordingly ? This may slow your file a tad but would be simpler.
Bookmarks