If / Contains combination
Just recently, we have been experiencing automated workflow messages triggered based on formulas that are years old 😯 It appears that these messages are triggering each time a user sorts the originating sheet a different way. In an attempt to debug the issue, I found the below. Any thoughts as to why the destination Smartsheet is showing a location of 3?
Thanks
Becky Menning
Best Answer
-
Thanks for clarifying! In this image, it looks like "1" is a criteria and not the output that you're looking for.
What I would do here is use INDEX(COLLECT instead of INDEX(MATCH, as you can then add multiple criteria into what you're looking to match on.
For example:
=INDEX(COLLECT({Date to return}, {Provider Name}, Name@row, {Location}, 1), 1)
So in your case, something like this:
=INDEX(COLLECT({BJCMG Provider Roster Range Start Date}, {BJCMG Provider Roster Range Provider Full Name}, [Provider Full Name]@row, {BJCMG Provider Roster Range Location}, 1), 1)
Note that this will need to be put in a Date type of column in order to return a Date from the source sheet. Here's more information:
Cheers,
GenevieveNeed more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Answers
-
Just a step further
When I resort the source sheet….. the correct location shows on the destination sheet
-
INDEX/MATCH will start at the top of the range and pull the first match. So if the sheet is sorted to where the 3 is the first match for that provider, INDEX/MATCH will output a 3. If the source data is sorted again so that the 1 is the first match for that provider, the INDEX/MATCH will output a 1.
-
So what formula can I use to ensure it only pulls when practice location = 1?
-
You would basically need to evaluate the INDEX/MATCH with the IF statement along the lines of
=IF(INDEX/MATCH = 1, 1)
-
OK … now I am getting an Invalid operation.
=IF({BJCMG Provider Roster Range Location} = "1", INDEX({BJCMG Provider Roster Range Start Date}, MATCH([Provider Full Name]@row, ({BJCMG Provider Roster Range Provider Full Name}), 0)))
-
Can you explain what it is you want the formula to do?
If there are multiple matches, should it always present "1"? Is it the same numbering system in the source sheet for all locations?
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
@Rebecca Menning Your syntax is still off.
You have
=IF({Range} = 1, INDEX/MATCH)
Try
=IF(INDEX/MATCH = 1, 1)
-
Still not having any luck. See below for additional detail on what I am trying to do. Thank you!
-
Thanks for clarifying! In this image, it looks like "1" is a criteria and not the output that you're looking for.
What I would do here is use INDEX(COLLECT instead of INDEX(MATCH, as you can then add multiple criteria into what you're looking to match on.
For example:
=INDEX(COLLECT({Date to return}, {Provider Name}, Name@row, {Location}, 1), 1)
So in your case, something like this:
=INDEX(COLLECT({BJCMG Provider Roster Range Start Date}, {BJCMG Provider Roster Range Provider Full Name}, [Provider Full Name]@row, {BJCMG Provider Roster Range Location}, 1), 1)
Note that this will need to be put in a Date type of column in order to return a Date from the source sheet. Here's more information:
Cheers,
GenevieveNeed more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Thanks Paul and Genevieve. This is looking successful !
Becky Menning
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!