Is there a way to have a flag automatically turn red if a Priority column is "A"?

Best Answer

  • Mike Wilday
    Mike Wilday ✭✭✭✭✭✭
    Answer βœ“

    This should do the trick for you.

    =IF([Name of Priority Column]@row = "A", 1, 0)

    Just replace "Name of Priority Column" with the actual name of your column. Remove the brackets if your name has no spaces or there isn't a number at the end of the column name.

    Do be aware that if someone manually adds or removes a flag the formula will break for that row.

Answers

  • Mike Wilday
    Mike Wilday ✭✭✭✭✭✭
    Answer βœ“

    This should do the trick for you.

    =IF([Name of Priority Column]@row = "A", 1, 0)

    Just replace "Name of Priority Column" with the actual name of your column. Remove the brackets if your name has no spaces or there isn't a number at the end of the column name.

    Do be aware that if someone manually adds or removes a flag the formula will break for that row.

  • That did it. Thank you. I was missing the name of the column.πŸ˜€

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!