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
- Smartsheet Customer Resources
- 64K Get Help
- 412 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 138 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!