Formula is =IF(ISERROR(DATEDIF(B5,B6,”d”)),”waiting”,REPT(“I”,C5))
I want to conditional format the cells if there is an output either from REPT or ISERROR or cells in B that have at least 1 date. I tried “cell value is greater than 0”, but it includes cells with no output, those with no dates in either DATEDIF cells[B10 & B11 for example]. How do I exclude these cells so only a cell that would output an error [or in my case, “waiting”] or a REPT output would be included?
It seems if both DATEDIF cells are empty, there would be no output and therefore would not be greater than 0, but it does not work in this case. What does this output [both DATEDIF cells are empty] equal?
If Formula is =IF(ISERROR(DATEDIF(B5,B6,”d”)),”waiting”,DATEDIF(B5,B6,”d”)), then the conditional format “cell value is greater than 0” works. No formating is both DATEDIF cells are empty. Why the difference? I obviously must be missing something here.
Thanks.