COUNTIFS w/ multiple criteria (date present & phrase inclusion) across 2 ranges in same sheet
I am a relatively new user, and I'm struggling with the creation of a COUNTIFS formula that checks one range/column to determine if a particular phrase is present, followed by a second criteria to determine if a date is present (or entry not blank) in a second range on the same sheet.
The entries in this combined formula work just fine individually, but they do not work together (UNPARSEABLE):
=COUNTIFS([{Data Tracker Range 8}, FIND("Phrase", @cell)], [{Data Tracker Range 6}, <>""])
If I'm not mistaken, the Excel formula would be:
=COUNTIFS({Data Tracker Range 2},"=Phrase",{Data Tracker Range 1},"<>"&"")
I've even tried multiple COUNTIFS. Help! I'm stumped.
Pardon if referencing "Excel" is taboo here.
Best Answer
-
It looks like you have some extra characters tucked in. Try this:
=COUNTIFS({Data Tracker Range 8}, FIND("Phrase", @cell)>0, {Data Tracker Range 6}, <>"")
Note: The FIND function is case sensitive. If you don't want to have to worry about that, you can incorporate a LOWER or UPPER function wrapped around the @cell portion, or you can use a CONTAINS function in place of the FIND function.
Answers
-
It looks like you have some extra characters tucked in. Try this:
=COUNTIFS({Data Tracker Range 8}, FIND("Phrase", @cell)>0, {Data Tracker Range 6}, <>"")
Note: The FIND function is case sensitive. If you don't want to have to worry about that, you can incorporate a LOWER or UPPER function wrapped around the @cell portion, or you can use a CONTAINS function in place of the FIND function.
-
Many many thanks!!! The formula works perfectly.
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 219 Industry Talk
- 457 Announcements
- 4.7K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!