COUNTIFS one OR another criteria
Hello, I am trying to find the number of cells in a column that are blank OR do not contain a specific word. I believe the way that I have it right now would be AND rather than OR. Any suggestions?
Need: If Accounting column is checked and Bio Status is blank OR does not contain "Posted"
I'm currently getting 1 as the total, but it should be 2
=COUNTIFS(Attorney:Attorney, 1, [Bio Status]:[Bio Status], "") + COUNTIFS(Attorney:Attorney, 1, [Bio Status]:[Bio Status], NOT(CONTAINS("Posted", [Bio Status]:[Bio Status])))
Best Answer
-
Try somethign like this...
=COUNTIFS(Attorney:Attorney, 1, [Bio Status]:[Bio Status], OR(@cell = "", @cell <> "Posted"))
Answers
-
Try somethign like this...
=COUNTIFS(Attorney:Attorney, 1, [Bio Status]:[Bio Status], OR(@cell = "", @cell <> "Posted"))
-
It worked! Thank you so much!
-
Happy to help. 👍️
-
Can I add multiple "is not equal to" items to this?
=COUNTIFS(Attorney:Attorney, 1, [Bio Status]:[Bio Status], OR(@cell = "", @cell <> "Posted", @cell <> "N/A"))
-
Yes so long as you follow the same pattern within the OR function.
-
@Paul Newcome How can I count using 2 columns
I have one column named Course term with different values and I'm trying to search for value "20SU" and then I have another column w/ employee names that I want to count if the employee name appears for 20SU.
So I'm trying to come up with the COUNTIFS formula that says search the term column for all 20SU and then search the employee name and count how many times the employee name is related to the 20SU term.
I'm stumped do I use a FIND
I was thinking something like: =COUNTIFS({Course term}, FIND("20SU", @cell), {Employee name}, FIND("Name", @cell) > 0) I'm missing something here.
Senior Program Coordinator
De Anza College
-
@Stacey Carrasco You just forgot the "> 0" bit after the first FIND function is all.
-
@Paul Newcome ugh that was it!! oh geesh
Thanks for catching that!!
Senior Program Coordinator
De Anza College
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!