Nested Crtiteria

Hi,
I'm trying to write a formula that would give me the total Number of request by person, that does not include Completed or abandoned. I used the following formula and it come up as nested criteria.
=COUNTIFS({Status}, @cell <> $[Primary Column]7, {Owner}, @cell = "Erica" + COUNTIFS({Status}, @cell <> $[Primary Column]8, {Owner}, @cell = "Erica"))
Comments
-
You would want to close out your first COUNTIFS then add the second.
=COUNTIFS(.....)
+
COUNTIFS(......)
.
However, you can use OR and AND functions within a COUNTIFS to include multiple or differing sets of criteria for a single range.
Something like this might work for you...
=COUNTIFS({Status}, AND(@cell <> $[Primary Column]7, @cell <> $[Primary Column]8), {Owner}, @cell = "Erica")
-
Thank you,
That worked
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.7K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 509 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!