Drive Status Indicators on [End Date] vs. Today, considering only Workdays

Hello SmartPeople,

I use a formula below to show red, yellow, green and blue based on less than 100% completion when end date is in X days.

  • If complete, blue.
  • If incomplete/ends tomorrow, red.
  • If incomplete/ends in two days, yellow.
  • If incomplete/ends in three or more days, green.

My program does not count weekends. How can my formula consider only workdays?

# End Status

=IF(

  [% Complete]@row = 1, "Blue", 

  IF(AND([% Complete]@row < 1, [Revised End Date]@row <= TODAY(1) ), "Red", 

  IF(AND([% Complete]@row < 1, [Revised End Date]@row <= TODAY(2) ), "Yellow", 

  "Green"

)

Thank you!

Best Answer

Answers

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭

    You are going to want to work in a NETWORKDAYS function.

    =IF([% Complete]@row = 1, "Blue", IF(AND([% Complete]@row < 1, NETWORKDAYS([Revised End Date]@row, TODAY()) <= 1), "Red", IF(AND([% Complete]@row < 1, NETWORKDAYS([Revised End Date]@row, TODAY()) <= 2), "Yellow", "Green")

    Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!

    CERTIFIED SMARTSHEET PLATINUM PARTNER

    10xViz.com

  • Cory Strischek
    Cory Strischek ✭✭✭✭

    Thanks! Yes, networkdays seems like the way to go!

    For my own mental health, I spun it around a bit.

    =IF(  

     [% Complete]@row = 1, "Blue",  

     IF(AND([% Complete]@row < 1, NETWORKDAYS(TODAY(), [Revised End Date]@row) <= 2), "Red", 

     IF(AND([% Complete]@row < 1, NETWORKDAYS(TODAY(), [Revised End Date]@row) <= 3), "Yellow", 

     "Green")

     )

    )