Forum Discussion
Didn't work.
Here is the entire formula. The other Levels work but not Level 4.
If([Level]="Level 1" and [Documents Available]=false, "1 - Waiting on Documentation",
[Level]="Level 1" and [Documents Available]=true and [Approvals Needed]<>"", "2 - Waiting on Approvals",
[Level]="Level 1" and [Documents Available]=true and [Approvals Needed]="", "3 - Review Complete",
If([Level]="Level 2" and [Documents Available]=false, "1 - Waiting on Documentation",
[Level]="Level 2" and [Documents Available]=true and [Approvals Needed]<>"", "2 - Waiting on Approvals",
[Level]="Level 2" and [Documents Available]=true and [Approvals Needed]="", "3 - Review Complete",
If([Level]="Level 3" and [Documents Available]=false, "1 - Waiting on Documentation",
[Level]="Level 3" and [Documents Available]=true and [Approvals Needed]<>"", "2 - Waiting on Approvals",
[Level]="Level 3" and [Documents Available]=true and [Approvals Needed]="", "3 - Review Complete",
If(
[Level]="Level 4" and [Documents Available]=false, "1 - Waiting on Documentation",
[Level]="Level 4" and [Documents Available]=true and [Checklist Complete]= false, "2 - Checklist Incomplete",
[Level]="Level 4" and [Documents Available]=true and [Checklist Complete]= true, "3 - Checklist Complete",
[Level]="Level 4" and [Documents Available]=true and [Checklist Complete]= true and [Approvals Needed]<>"", "4 - Waiting on Approvals",
[Level]="Level 4" and [Documents Available]=true and [Checklist Complete]= true and [Approvals Needed]="", "5 - Review Complete")
)))
I would suggest updating your formula to read like this - to Marks point you don't have to nest if statements and I find this is easier to read:
------------------------------
Chayce Duncan
------------------------------
- SarahBurres8 months agoQrew Trainee
THis worked! Thank you!
------------------------------
Sarah Burres
------------------------------