با VBA هم میتونید اینکار رو بکنید با این کد:
کد HTML:
Sub Macro1()
Dim x As String
Dim c, s As Range
Set s = Selection
For Each c In s
On Error GoTo A
x = WorksheetFunction.Find(":", c) - 1
c.Select
ActiveCell.Characters(Start:=1, Length:=x).Font.Color = -16776961
A:
On Error GoTo -1
Next c
s.Select
End Sub
Leave a comment: