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
- Smartsheet Customer Resources
- 62.1K Get Help
- 351 Global Discussions
- 198 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 133 Brandfolder
- 127 Just for fun
- 127 Community Job Board
- 443 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!