Assuming the CF is intended for all cells in col. "A" - I would suggest an
Event-Macro:
-------------------------------------------------------------------------------
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
For C = 1 To Len(Target)
If Asc(Mid(Target, C, 1)) > 64 And Asc(Mid(Target, C, 1)) < 91 Then
Target.Characters(Start:=C, Length:=1).Font.ColorIndex = 3
End If
Next
End If
End Sub
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.