currently my code searches selects an entire column(s) for conditional formatting if blank cells are there. For example
Columns("A:F").Select
I don't think this is efficient because my data will most likely never get down to the bottom of the worksheet.
I was thinking something along the lines of
LR = Range("A" & Rows.Count).End(xlUp).Row
Columns("A:F").Select
I don't think this is efficient because my data will most likely never get down to the bottom of the worksheet.
I was thinking something along the lines of
LR = Range("A" & Rows.Count).End(xlUp).Row