COUNTIFS function with multiple criteria
Answers
-
@Jessica Toledo Are you able to provide a screenshot of the formula as is in the sheet similar to the screenshot below?
-
=COUNTIFS({REVISED SC Deal Info Data Only Range 3}, HAS(@cell, "September 2022", {REVISED SC Deal Info Data Only - Dashboard Range 2}, OR(@cell, "1 Newly Assigned", @cell = "2 RFI-RFP", @cell = "3 Qualification", @cell = "4 Analysis/Prep", @cell = "5 Discovery", @cell = "6 Solutioning", @cell = "7 Contracting - SOW ")))
I am using the above to get a count of how many deals are marked for the month of Sept 2022 and are in the 7 statuses listed but keep on getting 0 when I should have values. Any help would truly appreciated. Thank you
-
@P Challen Are you able to provide a screenshot of the source data? Right off I see some syntax issues, but I want to make sure that any suggestions fit with what you are actually working with.
-
@Paul Newcome First screenshot is the formula used. Trying to create the formula to count if the project date falls in a certain month (2nd screenshot) and is also one of the 7 stages I have listed in the 3rd screenshot. Any help to what I am doing wrong would be truly appreciated. Thank you
-
@Paul Newcome End game is to have the dates show in date order on my dashboard and not alphabetical so I created a ref sheet with the dates in the proper order. Thank you
-
@P Challen Try this:
=COUNTIFS({REVISED SC Deal Info Data Only Range 3}, @cell = "September 2022", {REVISED SC Deal Info Data Only - Dashboard Range 2}, OR(@cell = "1 Newly Assigned", @cell = "2 RFI-RFP", @cell = "3 Qualification", @cell = "4 Analysis/Prep", @cell = "5 Discovery", @cell = "6 Solutioning", @cell = "7 Contracting - SOW"))
-
@Paul Newcome You are the man! Thank you!!
-
@P Challen Happy to help. 👍️
-
Hello,
I am attempting to use CountIFs via reference sheet. I have an Issue Type column with multi-select dropdown properties that shows which Firms had issues. Some have multiple, different issues.
I am trying to count the number of times each Issue Type occurs with a Firm. The data lives in another sheet.
I am using this formula (=COUNTIFS({Task Log Range 1}, "Firm", {Task Log Range 2}, "Files Missing") but the value returned is always 0 even though the value should be at least 3.
I've tried these formulas as well with no luck:
=COUNTIFS({Task Log Range 1}, "Firm", {Task Log Range 2}, HAS({Task Log Range 2}, "Files Missing")
=COUNTIFS({Task Log Range 1}, "Firm", {Task Log Range 2}, OR(CONTAINS("Files Missing", {Task Log Range 2})))
Please advise
-
@Robert O. You would use an @cell reference inside of the HAS function to tell the formula to evaluate the previously established range on a cell by cell basis.
=COUNTIFS({Task Log Range 1}, "Firm", {Task Log Range 2}, HAS(@cell, "Files Missing")
-
Hi all,
I have been having trouble doing multiple COUNTIFS in one formula. The one I am trying to use is below but keeps giving me Invalid Operations error.
=COUNTIFS({Tracker Template 2.0 Range 1}, <>"Open Position", {Tracker Template 2.0 Range 3} <> "Leader Name X", {Tracker Template 2.0 Range 5}, "Draft")
-
@Jest1020 It looks like you just forgot a comma after your second range is all.
-
Thank you, I added the common but results come back with zero unfortunately :(
-
@Jest1020 Try using "@cell" references:
=COUNTIFS({Tracker Template 2.0 Range 1}, @cell <> "Open Position", {Tracker Template 2.0 Range 3}, @cell <> "Leader Name X", {Tracker Template 2.0 Range 5}, @cell = "Draft")
-
I'm trying to use this formula to check for duplicates by checking a box if it seems two of the same number attempt recorded for an individual, but I keep getting an INCORRECT ARGUMENT error. Any ideas where I am going wrong?
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!