A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi:
Try this small macro:
Sub Unconditional()
Dim N As Long, L As Long, r As Range
N = Cells(Rows.Count, "A").End(xlUp).Row
For L = 1 To N
If Cells(L, "A").Value = "Header" Then
Set r = Range("A" & L & ":O" & L)
With r
.ClearFormats
.Font.ColorIndex = 2
.Interior.ColorIndex = 1
End With
End If
Next
End Sub