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
- 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!