Creating and IFERROR/INDEX/MATCH Formula for Exact Match
Greetings! I am seeking assistance to create an IFERROR/INDEX/MATCH formula that will look for an EXACT match of an Account ID between two Smartsheet. In Smartsheet 2 below I have an Iferror/Index/Match formula in the Status column that looks at the Account ID @row, searches the Account ID column in Smartsheet 2 and returns the associated status. The issue is that the Account IDs may include the same characters but diff cases. For example, the first two rows show the same Account ID in Smartsheet 1, but the last character is lower or upper case.
What is the trick in the Iferror/Index/Match formula to find the EXACT match?
Thank you,
John
Best Answer
-
You would want an INDEX/COLLECT instead so that you can incorporate the case sensitive FIND function.
=IFERROR(INDEX(COLLECT({Range To Pull Over}, {Account ID}, FIND([Account ID]@row, @cell)> 0), 1), "")
Answers
-
You would want an INDEX/COLLECT instead so that you can incorporate the case sensitive FIND function.
=IFERROR(INDEX(COLLECT({Range To Pull Over}, {Account ID}, FIND([Account ID]@row, @cell)> 0), 1), "")
-
That did the trick! Thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 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!