COUNTIF HELP NEEDED
Good afternoon. after getting some rude comments, I am re-asking this questions. I have a Calculation sheet that I do all my calculations on as they are tied to a Dashboard. On this Calc Sheet, I want to count data in a column on my Summary Data Sheet.
Goal: to count cells in the Summary Data Sheet, from the Contract Status Column, that only contain either "CW Reviewing/Negotiating" or "#No Match". (Yes I know that is an error that is being thrown but that is ok. That shows me there are no transactions in this column for those locations, so I am ok with that error being there. I just need to be able to count it.
Starting with below but getting "#unparseable"
=COUNTIFS({Summary Data Contract Status 2}:{Summary Data Contract Status 2}, "CW Reviewing/Negotiating", {Summary Data Contract Status 2}:{Summary Data Contract Status 2}, "#NO MATCH")
Answers
-
Try this:
=COUNTIFS({Summary Data Contract Status 2}, OR(@cell = "CW Reviewing/Negotiating", ISERROR(@cell))
We may end up needing to try something a little different as the error may pull through. If that is the case, then try this one:
=COUNTIFS({Summary Data Contract Status 2}, OR(@cell = "CW Reviewing/Negotiating", IFERROR(@cell, "!") = "!"))
If that still doesn't work, then you will need to adjust the formula on the source sheet to remove the error and then we can adjust the COUNTIFS to accommodate the source sheet adjustment.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!