Having issues using Distinct and Contains within a Countifs formula
Hi, I'm trying to create a formula that counts the number of distinct "Funder Assigned Project Names" for all rows where the "Project Reference" column also has a partial match text match. I.E. I want to know the number of distinct "Funder Assigned Project Names" where the "Project Reference" contains the word "Touchet."
This is what I've come up but I am getting an #unpareseable message.
=COUNTIFS([Funder Assigned Project Name]:[Funder Assigned Project Name], DISTINCT(@cell)), ([Project Reference]:[Project Reference], CONTAINS("Touchet",@cell))
Thanks for any help!
Best Answer
-
You are going to want something more like this:
=COUNT(DISTINCT(COLLECT([Funder Assigned Project Name]:[Funder Assigned Project Name], [Project Reference]:[Project Reference], CONTAINS("Touchet",@cell))))
Answers
-
You are going to want something more like this:
=COUNT(DISTINCT(COLLECT([Funder Assigned Project Name]:[Funder Assigned Project Name], [Project Reference]:[Project Reference], CONTAINS("Touchet",@cell))))
-
Thanks Paul! That worked for me. Appreciate the help.
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!