Help with COUNTIFS, two criteria from the same column

I am being dim I am sure, I need to count some information that has been imported from an excel spreadsheet which is a download from our membership database so the formating is odd.

This will be a regular download and upload so I don't want to spend time tidying things up so hive mind.

This below works fine but I also need to count if the qualification is "Level 2 Epee" how do I put both in the same forumla? I tried using OR but it didn't like this………….

=COUNTIFS([BF Epee Qualification Qualification Type]:[BF Epee Qualification Qualification Type], "Level 1 Epee, Level 2 Epee")

Tags:

Best Answer

Answers

  • Protonsponge
    Protonsponge ✭✭✭✭✭✭

    Hello @Lorri Rose,

    Could the following formula give you what you are looking for?

    =COUNTIF([BF Epee Qualification Qualification Type]:[BF Epee Qualification Qualification Type], "Level 1 Epee") + COUNTIF([BF Epee Qualification Qualification Type]:[BF Epee Qualification Qualification Type], "Level 2 Epee")

    I hope that is helpful in some way,

    Protonsponge

  • Lorri Rose
    Answer ✓

    thank you! that works perfectly

  • Hi Protonsponge,

    another question how to select a cell that is not blank? The below doesn't work (there are 8 different qualifications and all the permutations if they have more than one so I would like an overview of just how many cells are not blank.

    =COUNTIF([Other Coaching Qualification Qualification Type]:[Other Coaching Qualification Qualification Type], IS NOT " " )

    Also If I want to pull out one qualification from that column "FIE" how would I write a formula to count only cell that have this text in them?

  • Jennifer Kurtz
    Jennifer Kurtz ✭✭✭✭✭✭

    Adding a note about using OR, just in case it's helpful for anything you're working on in the future, Lorri :)

    The @cell reference can be really helpful for this sort of thing:

    =COUNT IF([BF Epee Qualification Qualification Type]:[BF Epee Qualification Qualification Type], OR(@cell="Level 1 Epee", @cell="Level 2 Epee")

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!