Help with COUNTIFS Formula w/ multiple possible criteria in the same column

I am looking to create a formula that can count a couple of items and if any of 3 possible solutions are in play. Any help that anyone can lend would be appreciated.

Items I am looking to count:

'Carrier Initiated TDM' is checked and the status is 'In Progress' and if the Scope/Decision/Solution is any of these 3 possible scope options:

'Add Temp Cell'
'Add temp cell, Disconnect'
'Disconnect, Add temp cell'

What I have tried for a formula - but its returning 0:

=COUNTIFS({T1 Scope}, "Add temp cell, Disconnect", {T1 Scope}, "Add Temp Cell", {T1 Scope}, "Disconnect, Add temp cell", {Carrier initiated TDM}, 1, {T1 to Temp Cell Status}, "In Progress")

Here is a snip of my sheet:

Best Answer

  • Kelly Moore
    Kelly Moore ✭✭✭✭✭✭
    Answer ✓

    @PKane

    Try this:

    =COUNTIFS({Carrier Initiated TDM}, 1, {T1 to Temp Cell Status}, "In Progress", {T1 Scope}, OR(@cell = "Add Temp Cell", @cell = "Add temp cell, Disconnect", @cell = "Disconnect, Add temp cell"))

    Will this work for you?

    Kelly

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!