I am attempting to get this to loop down through the rest of cells in columns H and I.
Any help appreciated.
Any help appreciated.
Code:
Sub RangeLoop()'
Range("H2").Select
Do Until IsEmpty(ActiveCell)
If Range("H & NextRow") = "Certified Bilingual" And Range("I & NextRow") = "English" Then
Range("H:I").Interior.ColorIndex = 3 'red
End If
ActiveCell.Offset(1, 0).Select
Loop
End Sub