Count if the cell linked value is not "Complete"
Hi I am having troubles with a formula that is supposed to count every cell in a cell link that does not contain the value "Complete". The formulas that I have tried to use are =COUNTIFS({HelperCA}, "Executed Batch Record ALN", {StatusCA}, NOT(Complete))
and
=COUNTIFS({HelperCA}, "Executed Batch Record ALN", NOT({StatusCA}="Complete"))
where is my formula going wrong?
Thanks in advanced! 😊
Answers
-
I think you want it this way:
=COUNTIFS({HelperCA}, "Executed Batch Record ALN", {StatusCA}, <>"Complete")
The way the Countifs function works is by giving it multiple ranges and criteria. So in this formula you give it the range HelperCA (assuming a column in the other sheet...) and the criteria that it be equal to "Executed Batch Record ALN." Then you give it another range, StatusCA, and give it the criteria that it not be equal to "Complete" using the <> symbols. That way it knows to count only rows that meet the criteria given for both ranges.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!