Formula issue

Options

Hi Brian Trust

My formula wont work

LOGIC

  • If the Helper Date Column is blank then the priority cell is blank
  • If the Helper Date Column is less than 10 days, its Low Priority
  • If the Helper Date Column is greater than 10 days, its High Priority?

FORMULA

=IF(ISBLANK([DD 10 Day - Helper Column]@row), "", IF(NETWORKDAYS(TODAY(), [DD 10 Day - Helper Column]@row) <= 10, "Low", "High"))

  • f the Helper Date Column is blank then the priority cell is blank - WORKS
  • If the Helper Date Column is less than 10 days, its Low Priority - WORKS
  • If the Helper Date Column is greater than 10 days, its High Priority? - WONT WORK

What have I done wrong?

Answers

  • NicoLHC
    NicoLHC ✭✭✭✭✭✭

    @Susan van Niekerk its a pleaseure to meet you , great to see your engagement!

    Try this instead:

    working days

    =IF(ISBLANK([DD 10 Day - Helper Column]@row), "", IF(NETWORKDAYS(TODAY(), [DD 10 Day - Helper Column]@row) <= 10, "Low", "High"))

     Calendar Days

    =IF(ISBLANK([DD 10 Day - Helper Column]@row), "", IF([DD 10 Day - Helper Column]@row - TODAY() <= 10, "Low", "High"))

    If my comment helps you, I appreciate a 💡

    Kind regards

    Nico | LinkedIn

    CEO | Lighthouse Consultings

    Lecturer in Business Information Systems | DHBW

    ________________________________________________________________________________

    addvalue@lighthouseconsultings.com

    We offer Licenses - Training - Solution Engineering

    🔴 GOLD Smartsheet Partner _______________________________________________

    💯 SCALEABLE Solutions Engineered by Lighthouse Consultings

    We Don’t Just Implement Smartsheet; We Revolutionize How You Manage, Plan, And Execute.

    🎥 YouTube 🚀TimeLine View

    http://lighthouseconsultings.de/

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!