How can I use a formula to count the total in a column that has specific values
I am try to count the number of people who are internal coming to an event, so we have a form that people put in what their organization is. If it is internal, it should have Geisinger in the name, but there are many branches, so it could be Geisinger (insert campus names). I want to calculate how many people have Geisinger in the name of their organization without having to ask them if they're internal or external.
This is the formula I have so far-
=COUNTIF(CONTAINS("Geisinger", Organization:Organization), "True")
I keep getting an error. Any ideas?
Thanks!
Best Answer
-
Very close actually...
=COUNTIFS(Organization:Organization, CONTAINS("Geisinger", @cell))
Answers
-
Very close actually...
=COUNTIFS(Organization:Organization, CONTAINS("Geisinger", @cell))
-
I would make a helper column, that has the formula =IF(CONTAINS("Geisinger", Organization3), 1, 0). then run a count formuala for that range for 1's =COUNTIF(Internal:Internal, true). the count if could also be put into the sheet summary that would be cleaner.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 207 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!