Hi All again,
I have the following code which I thought will do the job for me. Unfortunately not.
All I am trying to achieve is to highlight only rows that have cells in columns A and C blank (there may be formulas in those that result in blank).
Any help is much appreciated.
Thanks
Asad
I have the following code which I thought will do the job for me. Unfortunately not.
Code:
Sub Int_Col()
With Range("D15:Q101")
If Range(cell.Row, "A") = "" And Range(cell.Row, "C") = "" Then
Range("D15:Q101").Interior.Color = 192
Else: Range("D15:Q101").Interior.Color = xlNone
End If
End With
End Sub
Any help is much appreciated.
Thanks
Asad