Forum Discussion
reemav
Mar 10, 2022Copper Contributor
Help with Excel Function to return the correct status
Hi, I have an excel sheet where i need the "Status" column to either return a blank, "open", "overdue" or closed" status depending on the following scenarios: If "Target" and "Completion" co...
- Mar 10, 2022
=IF(AND(J8="",K8=""),"",IF(AND(J8<>"",K8<>""),"Closed",IF(AND(J8>O1,K8=""),"Overdue",IF(AND(J8<>"",K8=""),"Open"))))
Is this what you are looking for?
OliverScheurich
Mar 10, 2022Gold Contributor
=IF(AND(J8="",K8=""),"",IF(AND(J8<>"",K8<>""),"Closed",IF(AND(J8>O1,K8=""),"Overdue",IF(AND(J8<>"",K8=""),"Open"))))
Is this what you are looking for?
- reemavMar 23, 2022Copper ContributorThank you so much! Yes that's exactly what i was looking for 🙂