Hello, Ive been trying to loop through my sheet of loans and identify the loans that do not have loan numbers. If there is not a loan number in the active cell and the activecell.offset (0, 1) is one of my 6 different banks, then i want to color the the cell red. if there is a loan number in the active cell, i want it to go to go on with the search. ive tried several different techniques and the VB is not regognizing the empty cell. below is one that i have tried.
Do While ActiveCell.Value = "Neils Report"
If ActiveCell.Offset(0, 0).Value = "" Then
If ActiveCell.Offset(0, 1).Value = "US Bank" or "Wells Fargo" or "Chase" Then
ActiveCell.Offset(0, 1).Interior.ColorIndex = 22
Else
ActiveCell.Offset(1, 0).Select
End If '
End If
Bookmarks