[table="width: 500"]
[tr]
[td]Sub ColorRows()
Application.ScreenUpdating = False
On Error Resume Next
With Range("C3:C300")
.Offset(, -2).Resize(, 26).Interior.ColorIndex = xlColorIndexNone
.Offset(, -2).Resize(, 26).Font.Bold = False
.Replace "Build Completed", "=Build Completed", xlWhole, , False, , False, False
With Intersect(.SpecialCells(xlFormulas).EntireRow, Columns("A:X"))
.Interior.ColorIndex = 4
.Font.Bold = True
End With
Columns("C").Replace "=", "", xlPart
.Replace "Build Started", "=Build Started", xlWhole, , False, , False, False
With Intersect(.SpecialCells(xlFormulas).EntireRow, Columns("A:X"))
.Interior.ColorIndex = 6
.Font.Bold = True
End With
Columns("C").Replace "=", "", xlPart
.Replace "Device Not Received", "=Device Not Received", xlWhole, , False, , False, False
With Intersect(.SpecialCells(xlFormulas).EntireRow, Columns("A:X"))
.Interior.ColorIndex = 33
.Font.Bold = True
End With
Columns("C").Replace "=", "", xlPart
.Replace "Device With Build Engineer", "=Device With Build Engineer", xlWhole, , False, , False, False
With Intersect(.SpecialCells(xlFormulas).EntireRow, Columns("A:X"))
.Interior.ColorIndex = xlColorIndexNone
.Font.Bold = True
End With
Columns("C").Replace "=", "", xlPart
.Replace "Emailed Requested For SCCM Check", "=Emailed Requested For SCCM Check", xlWhole, , False, , False, False
With Intersect(.SpecialCells(xlFormulas).EntireRow, Columns("A:X"))
.Interior.ColorIndex = 39
.Font.Bold = True
End With
Columns("C").Replace "=", "", xlPart
.Replace "Swapped-Out", "=Swapped-Out", xlWhole, , False, , False, False
With Intersect(.SpecialCells(xlFormulas).EntireRow, Columns("A:X"))
.Interior.ColorIndex = 38
.Font.Bold = True
End With
Columns("C").Replace "=", "", xlPart
.Replace "Desktop UAD - On Hold ATM", "=Desktop UAD - On Hold ATM", xlWhole, , False, , False, False
With Intersect(.SpecialCells(xlFormulas).EntireRow, Columns("A:X"))
.Interior.ColorIndex = 45
.Font.Bold = True
End With
Columns("C").Replace "=", "", xlPart
End With
On Error GoTo 0
Application.ScreenUpdating = True
End Sub[/td]
[/tr]
[/table]