Formula issue
Hello,
I have a worksheet titled Sample on which cell B5 is the due date and cell B4 is the completion date. I want to use conditional formatting on a separate worksheet that displays a dashboard of the project in which a cell will fill red if the due date is today or has passed but the completion date is blank. I'm doing something wrong with the formula but cannot figure out what. Any help would be greatly appreciated.
=AND(TODAY()>=Sample!B5, Sample!B4=" ")
»
- jlbf9090's blog
- Login or register to post comments
- 3936 reads
Formula issue resolved
removing the space between the quotation marks for null did the trick!
You need to add a little more
You need to add a little more to the function and remove the space between the quotation marks as follows:
=IF(AND(TODAY()>=Sample!B5,Sample!B4=""),1,0)
then in the format option select Fill and choose red
Regards
Mark