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")
Best Answers
-
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
-
Dear Protonsponge,
Super! Thank you so much for the help!
Answers
-
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
-
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?
-
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")
-
Hello @Lorri Rose,
Would the following work for you to count rows that are not blank. It will count the number of cells that are anything (<>) except blank ("")
=COUNTIF([Other Coaching Qualification Qualification Type]:[Other Coaching Qualification Qualification Type], <>"")
For your second question, if you are looking to count the number of rows that contain "FIE", the following could be an option for you.
=COUNTIF([Other Coaching Qualification Qualification Type]:[Other Coaching Qualification Qualification Type], CONTAINS("FIE", @cell))
Protonsponge
-
Dear Protonsponge,
Super! Thank you so much for the help!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.1K Get Help
- 414 Global Discussions
- 221 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 461 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!