COUNTIFS Formula Help
Hello,
I am trying to create a formula for my Dashboard Matrix. I need to count the Projects for Fofi Kantas listed as Project and Enhancement.
=COUNTIFS({Project Owner}, FIND("Fofi Kantas", @cell) > 0, {Type}, "Project")
I can count them for each but cannot figure out the formula for project or enhancement.
Best Answers
-
Try:
=COUNTIFS({Project Owner}, FIND("Fofi Kantas", @cell) > 0, {Type}, OR(@cell = "Project", @cell = "Enhancement")
-
Hi @Shelley Isbell
You can use OR or sum the two counts for Project and Enhancement.
If you want to use OR,
=COUNTIFS([Project Owner]:[Project Owner], HAS(@cell, Owner#), Type:Type, OR(@cell = "Project", @cell = "Enhancement"))
or in your case
=COUNTIFS({Project Owner}, HAS(@cell, "Fofi Kantas"), {Type},OR(@cell = "Project", @cell = "Enhancement"))
Answers
-
Try:
=COUNTIFS({Project Owner}, FIND("Fofi Kantas", @cell) > 0, {Type}, OR(@cell = "Project", @cell = "Enhancement")
-
Oh my gosh! Thank you that worked. I was putting the OR in the wrong place! YA
-
Hi @Shelley Isbell
You can use OR or sum the two counts for Project and Enhancement.
If you want to use OR,
=COUNTIFS([Project Owner]:[Project Owner], HAS(@cell, Owner#), Type:Type, OR(@cell = "Project", @cell = "Enhancement"))
or in your case
=COUNTIFS({Project Owner}, HAS(@cell, "Fofi Kantas"), {Type},OR(@cell = "Project", @cell = "Enhancement"))
-
Thank you so very much for responding so quickly.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.1K Get Help
- 430 Global Discussions
- 149 Industry Talk
- 489 Announcements
- 5.2K Ideas & Feature Requests
- 85 Brandfolder
- 154 Just for fun
- 74 Community Job Board
- 499 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!