Forum Discussion
AMZI2001
Jun 19, 2022Copper Contributor
help
I need help putting the formula for the table below. Target Start Date Actual Completion Result Status Not started 12-Jun-22 In Progress 12-Jun-22 15-Jun-22 Fail...
- Jun 19, 2022
=IF(AND(A3="",B3="",C3=""),"Not started",IF(AND(A3<>"",B3="",C3=""),"In progress",IF(AND(A3<>"",B3<>"",C3="Fail"),"Retest",IF(AND(A3<>"",B3<>"",C3="Pass"),"Completed",""))))Maybe with this formula.
dscheikey
Jun 19, 2022Bronze Contributor
A little more modern:
=IFS(AND(C3="Pass",B3>0,A3>0),"Completed",AND(C3="Fail",B3>0,A3>0),"Retest",AND(ISBLANK(C3),ISBLANK(B3),A3>0),"In Progress",AND(ISBLANK(C3),ISBLANK(B3),ISBLANK(A3)),"Not started",1,"")
AMZI2001
Jun 19, 2022Copper Contributor
Hi
Thank You.
I'll try this formula also. Let u know soon!
Thank You.
I'll try this formula also. Let u know soon!