Forum Discussion

reemav's avatar
reemav
Copper Contributor
Mar 10, 2022
Solved

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...
  • OliverScheurich's avatar
    Mar 10, 2022

    reemav 

    =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?