I am unable to get the formula right for the following scenario:
Column 1: Yes / No
Column 2: Yes / No
If Column 1 and/or Column 2 is blank, then "Not Completed"
If Column 1 and Column 2 is Yes, then "Completed"
If Column 1 is Yes, Column 2 is No, then "In Progress"
If Column 1 is No, Column 2 is Yes, then "KIV"
=IF(ISBLANK([Column 1]1), "Not Completed", IF(ISBLANK([Column 2]1), "Not Completed", IF([Column 1]1 = "Yes", IF([Column 2]1 = "Yes", "Completed", IF([Column 1]1 = "Yes", IF([Column 2]1 = "No", "In Progress", IF([Column 1]1 = "No", IF([Column 2]1 = "Yes", "KIV"))))))))
But the last part of the formula doesn't work (IF([Column 1]1 = "No", IF([Column 2]1 = "Yes", "KIV"). It just return blank cell.
Please help. Thanks.