Countifs with multiple variables
I am trying to automate a tally of which SME's have worked an event with which countries. Ultimately, I created a column that lists the countries that participated in the particular event (ideally I would like to keep multiple countries in one cell per event), and hoped to use the "joined" column to reference the SME's designating to count only if the Tally or Not column is checked. I have tried:
=COUNTIFS({Past Events Range 2}, FIND(FTX$17) > 0, {Past Events Range 1}, FIND(SME18) > 0, {Past Events Range 4}, 1)
=COUNTIFS({Past Events Range 2}, FIND(FTX$17) > 0, {Past Events Range 1}, SME18, {Past Events Range 4}, 1)
Any help with this is greatly appreciated!
Comments
-
Try something like this...
=COUNTIFS({Joined Column Range}, FIND(FTX$1, @cell) > 0, {Location Column Range}, FIND($SME@row, @cell) > 0)
NOTE: The $ is used to lock in row or column references. I have included them in the above formula so that you can enter it into the top left cell of your table and then drag-fill down and over. This allows for more flexibility as you won't have to edit the formula for each variable.
-
That worked perfectly! Thank you for your help!
-
Happy to help!
When using the FIND function, you NEED two parts.
1. What you are looking for.
2. Where to look.
In your formulas, you were only saying what to look for. You simply needed an @cell reference to tell the formula where.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!