Dim startpos As Byte
Dim endpos As Byte
Dim currentvalue As String
Dim extractvalue As String
celltrack = 1
For celltrack = 1 To ActiveSheet.Range("A" & Cells.Rows.Count).End(xlUp).Row
currentvalue = Range("A" & celltrack).Value
startpos = WorksheetFunction.Find("(", currentvalue) + 1
endpos = WorksheetFunction.Find(")", currentvalue)
extractvalue = Mid(currentvalue, startpos, endpos - startpos)
If extractvalue = "Cheque Date is given" Then
Range("A" & celltrack).Characters(startpos, endpos - startpos).Font.ColorIndex = 3
End If
Next