COUNTIF multiple Criterias

Hello there,

i am trying to count the number of time certain names have been selected in a multi drop down list, in a specific range of time, while referencing another sheet.

I've tried the formula below and getting an error

=COUNTIFS({Phase}, CONTAINS("Complete", @cell), {Go live date}, >=[Column10]@row, {Go live date}, <[Column10]3, {PM}, ="Rebecca", {PM}, ="Caroline", {PM}, "Abigail")


Tags:

Answers

  • Staylo95
    Staylo95 ✭✭✭✭

    Hi Noble,

    Does it work if you only use 1 name in the formula?

    I've found that I can't use countifs with multiple values in the same cell but you can add multiple countifs together.


    It would probably look like this

    =COUNTIFS({Phase}, CONTAINS("Complete", @cell), {Go live date}, >=[Column10]@row, {Go live date}, <[Column10]3, {PM}, ="Rebecca")

    + COUNTIFS({Phase}, CONTAINS("Complete", @cell), {Go live date}, >=[Column10]@row, {Go live date}, <[Column10]3, {PM}, ="Caroline")

    +COUNTIFS({Phase}, CONTAINS("Complete", @cell), {Go live date}, >=[Column10]@row, {Go live date}, <[Column10]3, {PM}, "Abigail")


    I didn't test this one but I did run into a similar problem today. Hope that helps!

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!