Hi,
I do not know where I am going wrong in the following line of code.
Thank you.![]()
With .Range("D5:D" & LR1) If .Value = "" Then .EntireRow.Interior.ColorIndex = 6 End With
Hi,
I do not know where I am going wrong in the following line of code.
Thank you.![]()
With .Range("D5:D" & LR1) If .Value = "" Then .EntireRow.Interior.ColorIndex = 6 End With
Hi,
Is this piece of code within another With statement? If not you should replace
with![]()
With .Range("D5:D" & LR1)
Additionally you are trying to extract the value of a range of cells, effectively![]()
With Range("D5:D" & LR1)
Which can't be done.![]()
If Range(D5:D10).Value = "" Then ........
I think that you're trying to highlight a row yellow if one of the cells in your range in empty.
How about something like this:
![]()
Dim rCell As Range For Each rCell In Range("D5:D" & lr1) If rCell.Value = "" Then rCell.EntireRow.Interior.ColorIndex = 6 Next rCell
Rule 1: Never merge cells
Rule 2: See rule 1
"Tomorrow I'm going to be famous. All I need is a tennis racket and a hat".
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks