Trying to find the text "XLD XLD" and format row accordingly, not having much luck, appreciate the assistance.
Dim i As Long
For i = Lastrow To 1 Step -1
If Cells(i, 1) = “XLD” Then '‘ You can change this text
Range(Cells(i, 2), Cells(i, 5)).FontStyle = "Bold"
Range(Cells(i, 2), Cells(i, 5)).Interior.Color = RGB(255, 255, 0)
Range(Cells(i, 2), Cells(i, 5)).Font.Color = RGB(255, 0, 0)
End If
nexti
Thanks Graham
Dim i As Long
For i = Lastrow To 1 Step -1
If Cells(i, 1) = “XLD” Then '‘ You can change this text
Range(Cells(i, 2), Cells(i, 5)).FontStyle = "Bold"
Range(Cells(i, 2), Cells(i, 5)).Interior.Color = RGB(255, 255, 0)
Range(Cells(i, 2), Cells(i, 5)).Font.Color = RGB(255, 0, 0)
End If
nexti
Thanks Graham