How to automate the RYG status balls

Options

I need help to automate the RYG status balls in the "Status" column, depending on the "% Complete" for each request.


This is my formula but it kept showing "Red" though I have % Complete is 75% and 100%

=IF([% Complete]@row < 70, "Red", IF([% Complete]@row > 70, "Yellow", IF([% Complete]@row = 100, "Green")))


Requirement:

If a request is less than 70% complete, turn the "Status" column into a "Red" status ball

If a request is 70% or above and less than 100% complete, turn the "Status" column into a "Yellow" status ball

If a request is 100% complete, turn the "Status" column into a "Green" status ball"

Best Answer

  • Bassam Khalil
    Bassam Khalil ✭✭✭✭✭✭
    edited 05/27/21 Answer ✓
    Options

    Hi @Janice Phua

    Hope you are fine,please use the following formula:

    =IF([% Complete]@row = 1, "Green", IF(AND([% Complete]@row >= 0.7, [% Complete]@row < 1), "Yellow", "Red"))

    the following screenshot shows the result:


    PMP Certified

    bassam.khalil2009@gmail.com

    ☑️ Are you satisfied with my answer to your question? Please help the Community by marking it as an ( Accepted Answer), and I will be grateful for your "Vote Up" or "Insightful"

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!