detweiler
Board Regular
- Joined
- Aug 2, 2013
- Messages
- 62
Okay, so really weird, because I thought I had received help with this macro here, but found that there weren't any replies to my initial request ( ? ).
So, I have this macro -
What I have been trying to find is some variant that I could frankenvba into the code so that when it comes across a cell in "J" that is empty, it fills it with a color.
Comments, suggestions and thoughts are welcomed.
Much thanks.
So, I have this macro -
Dim c As Range, d As String
For Each c In Range("J2", Range("J" & Rows.Count).End(xlUp))
If c.Value Like "*[0-9]*" Then
d = Range("J" & c.Row & ":P" & c.Row).End(xlToRight)
c.Value = IIf(d <> "", d, c)
End If
Next
What I have been trying to find is some variant that I could frankenvba into the code so that when it comes across a cell in "J" that is empty, it fills it with a color.
Comments, suggestions and thoughts are welcomed.
Much thanks.