SOLVED

Conditional Formatting in Excel

Copper Contributor

I have a Status field.  I am trying to automatically select an option based on the following:

  • When E10 (Assigned To) is NOT blank AND F10 (Progress) is blank OR 0%, then K10 (Status) should equal "Assigned"
  • When E10 (Assigned To) is blank AND F10 (Progress) is blank OR 0%, K10 (Status) should equal "Unassigned"
  • When F10 (Progress) is greater than 0%, K10 (Status) should equal "Working"
  • When F10 (Progress is less than 75% AND J10 (Days Remaining) is <= 5, then K10 (Status) should equal "At Risk"
  • When F10 (Progress) is less than 75% AND J10 (Days Remaining) is 0, then K10 (Status) should equal "Behind Schedule"
  • When F10 (Progress) is equal to 100%, then K10 (Status) should equal "Complete"

I keep trying to write IF statements but the values are not being selected.  Can someone please advise?

2 Replies
best response confirmed by tracie3320 (Copper Contributor)
Solution

@tracie3320 

How about:

 

=IF(F10=0%,IF(E10="","Unassigned","Assigned"),IF(F10=100%,"Complete",IF(F10<75%,IF(J10=0,"Behind Schedule",IF(J10<=5,"At Risk","Working")),"Working")))

Thank you! That works fine.
1 best response

Accepted Solutions
best response confirmed by tracie3320 (Copper Contributor)
Solution

@tracie3320 

How about:

 

=IF(F10=0%,IF(E10="","Unassigned","Assigned"),IF(F10=100%,"Complete",IF(F10<75%,IF(J10=0,"Behind Schedule",IF(J10<=5,"At Risk","Working")),"Working")))

View solution in original post