Formula to count unique value from single dropdown row

Options

Hello, Im looking for a simple formula to count "Not started" values from a [Action Plan Status] column

This is the formula im trying to use:

=COUNT([Action Plan Status]@row, "Not started")


Thank you!

Tags:

Best Answer

  • KPH
    KPH ✭✭✭✭✭✭
    Answer ✓
    Options

    You're almost there @Rodrigo Colsa

    You need to use a COUNTIF if you want to include some logic.

    And to reference the entire Action Plan Status column you need to use [Action Plan Status]:[Action Plan Status] rather than [Action Plan Status]@row which just counts the single cell in the [Action Plan Status] column on that row.

    =COUNTIF([Action Plan Status]:[Action Plan Status], "Not started")

Answers

  • KPH
    KPH ✭✭✭✭✭✭
    Answer ✓
    Options

    You're almost there @Rodrigo Colsa

    You need to use a COUNTIF if you want to include some logic.

    And to reference the entire Action Plan Status column you need to use [Action Plan Status]:[Action Plan Status] rather than [Action Plan Status]@row which just counts the single cell in the [Action Plan Status] column on that row.

    =COUNTIF([Action Plan Status]:[Action Plan Status], "Not started")

  • Rodrigo Colsa
    Options

    thank you @KPH I was almost there!!!

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!