COUNTIFS + OR - Forumla Help

Options

You're all so amazingly helpful that I'm back. I think this is an easy fix for most, but I'm scratching my head.

I have a column named Status with multiple drop down options, of which only one can be used. I also have a column named PMO that is a checkmark.

I want to get a count of PMO flagged rows that fall within several statuses (planning, execution, monitoring). The formula below works for one status - how do I sneak in the OR to pick up each of those three?

=COUNTIFS(Status:Status, "Planning", PMO:PMO, 1)

Thanks!

Tags:

Best Answer

  • Nick Korna
    Nick Korna ✭✭✭✭✭✭
    Answer ✓
    Options

    Hi @ErinM,

    You can do this using OR and @cell in the formula:

    =COUNTIFS(Status:Status, OR(@cell = "Planning", @cell = "Execution", @cell = "Monitoring"), PMO:PMO, 1)

    Result:

    Hope this helps; if you've any further questions then just ask! 😊

Answers

  • Kelly P.
    Kelly P. ✭✭✭✭✭✭
    Options

    @ErinM

    You could use this formula:

    =COUNTIFS(Status:Status, "Planning", PMO:PMO, 1) + COUNTIFS(Status:Status, "Execution", PMO:PMO, 1) + COUNTIFS(Status:Status, "Monitoring", PMO:PMO, 1)

    Hope this helps!

  • Nick Korna
    Nick Korna ✭✭✭✭✭✭
    Answer ✓
    Options

    Hi @ErinM,

    You can do this using OR and @cell in the formula:

    =COUNTIFS(Status:Status, OR(@cell = "Planning", @cell = "Execution", @cell = "Monitoring"), PMO:PMO, 1)

    Result:

    Hope this helps; if you've any further questions then just ask! 😊

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!