Forum Discussion

tracie3320's avatar
tracie3320
Copper Contributor
Oct 01, 2021
Solved

Conditional Formatting in Excel

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?

  • 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")))

2 Replies

  • 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")))

Resources