CountIFs to count multiple items in same column
I want to count the instances of both "Complete" and "Not Applicable" in the same column. I got it to work with just "Complete" then divide by the total rows to make a percentage using this formula:
=COUNTIF(Status:Status, "Complete") / COUNT(Status:Status)
But when I add the other variable the formula does not work, I have tried
=COUNTIFS([Status]:[Status], "Complete", [Status]:[Status], “Not Applicable”) / COUNT(Status:Status)
and this
=COUNTIFS([Status]:[Status], "Complete" & “Not Applicable”) / COUNT(Status:Status)
Best Answer
-
=COUNTIF(Status:Status, OR(@cell = "Complete", @cell = "Not Applicable")) / COUNT(Status:Status)
Answers
-
=COUNTIF(Status:Status, OR(@cell = "Complete", @cell = "Not Applicable")) / COUNT(Status:Status)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.7K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 468 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 64 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!