Hi Jay
How about using this code as Macro
Depending on what excel you have change C1048576 in the macro to the very last cell.Code:Sub FillBlank() Dim myrange As Range Dim cell As Object Dim Lastrow As Long Lastrow = Range("C1048576").End(xlUp).Row Set myrange = Range("A1:A" & Lastrow) For Each cell In myrange If cell.Value <> "" Then cell.Offset(0, 1).Interior.ColorIndex = 6 End If Next cell End Sub
Hope it helps


LinkBack URL
About LinkBacks




Reply With Quote

Bookmarks