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
- 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
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!