Forum Discussion
Merk182
Sep 07, 2021Copper Contributor
Excel Formula Nesting IF AND Functions if more than one cell blank
I am putting a tracking sheet together. On the sheet I have project "Due Dates" and also possible "Extensions" to that due date. I think I'm ok calculating the time left -also OK with the condit...
DKoontz
Sep 07, 2021Iron Contributor
Try:
Just added an AND that states if both are blank, then return blank.
=IF(AND(D5="",E5=""),"",IF(ISBLANK(E5),D5-TODAY(), E5-TODAY()))