Jul 13 2023 08:18 AM
Hello, we track certain information and my employees sometimes forget/miss filling in some cells. Is there a way that if they start typing in a certain row, any cell that is left blank will turn a color until it is filled in? I have figured out how to highlight blank cells, but it is highlighting all blank cells after the data as well and is making our tracking sheet look sloppy. I'm hoping to figure out how to only highligh
Jul 13 2023 08:53 AM
SolutionHi @bramsburg
with above sample, Cond. Format. rule (Use a formula...) that applies to $A$2:$F$5:
=AND(COUNTA($A2:$F2), ISBLANK(A2))
Jul 13 2023 12:18 PM
@L z. You are the best! I'm not sure how it works, but it's working perfectly! Thank you so much!
Jul 13 2023 09:11 PM
Glad this helps. If this can help you understand the following does the same thing:
=AND(COUNTA($A2:$F2) > 0, ISBLANK(A2))
(At the bottom of each reply you get here there's a way to mark solution - helps those who Search... Thanks)