With Sheets("Highlight Markers").Range("A1")
  x = InStr(1, .Value, "highlight", vbTextCompare)
  If x > 0 Then .Characters(Start:=x, Length:=9).Font.FontStyle = "Bold"
End With