Forum Discussion
Aaron Lockett
Apr 24, 2018Copper Contributor
Nested IF
Hopefully someone can understand what I'm trying to achieve and lend a helping hand! The formula I'm trying to use is as follows: =IF(K2="",D,IF( (L2="Expired"),IF(O5="" AND L2=""),"In Progress"...
- Apr 24, 2018
=IF(O2<>"", "Closed", IF(OR(L2="Expired",ISBLANK(L2)),"In Progress","Closed"))
Aaron Lockett
Apr 24, 2018Copper Contributor
Incorrect Formula..
Iv Column L Displays "Expire" and Column O is blank this formula still returns "Closed" and I would want it to display "In Progress"
SergeiBaklan
Apr 24, 2018MVP
=IF(O2<>"", "Closed", IF(OR(L2="Expired",ISBLANK(L2)),"In Progress","Closed"))
- SergeiBaklanApr 24, 2018MVP
You may wrap it with another IF
=IF(K2="","",IF(O2<>"", "Closed", IF(OR(L2="Expired",ISBLANK(L2)),"In Progress","Closed")))
- Aaron LockettApr 24, 2018Copper Contributor
The only thing the formula doesn't do is Blank the cell if Column K is blank..
Not to worry, I can live with that.
- SergeiBaklanApr 24, 2018MVP
Huh, so far so good.
- Aaron LockettApr 24, 2018Copper Contributor
Ignore me!!
You have cracked!
- Aaron LockettApr 24, 2018Copper Contributor
This formula returns "Closed" even if Column L and Column O are blank. It should return "In Progress"