How to return a cell from another sheet when the criteria is within a text string in the source?
I'm trying to pull the notes from a Request sheet into the Review sheet, but I'm only getting results when the search criteria (Contract #) is the only contract in the cell in the Request sheet.
Ex 1: Line 1 in the source, "123" in the Contract #, has "Urgent" in Notes; the current formula returns the correct notes into the Review sheet on the line for contract 123.
Ex 2: Line 2 in the source, "456" and "789" in the Contract # (separated by line break), has "needed Monday" in Notes; the current formula returns #NO MATCH into the Review sheet on the line for contract 456 and the line for contract 789.
Current formula: =INDEX({Request Notes}, MATCH([Contract]@row, {Request Contract}, 0))
I've dabbled with the FIND, HAS, and CONTAINS functions but I'm new to them and haven't had much luck combining them correctly. I've also tried to find something similar to the SPLIT function to separate the contract numbers in the Request sheet without success.
Answers
-
Try INDEX/COLLECT with CONTAINS. CONTAINS looks for text strings within a cell.
=INDEX(COLLECT({Request Notes}, {Request Contract}, CONTAINS(Contract@row, @cell)), 1)
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
@Jeff Reisman Thank you for the suggestion! This formula now returns correct values when there are multiple contracts in a row, but now returns #INVALID VALUE when there is a single contract in the row. I built mock sheets and included screen shots below.
Request sheet:
Review sheet:
-
@Dustin R. Ah - OK. Let's wrap it in CHAR to have Smartsheet treat the 123 like text, then the CONTAINS function will work on it:
=INDEX(COLLECT({Request Notes}, {Request Contract}, CONTAINS(CHAR(Contract@row), @cell)), 1)
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
@Jeff Reisman This returns #INVALID VALUE for all rows, but I think CHAR is the culprit because even by itself it returned the same error:
I can try sharing the demo sheets I created if it would help you to play around in them.
-
@Dustin R. OK, this one has to work...
=INDEX(COLLECT({Request Notes}, {Request Contract}, CONTAINS(Contract@row +"", @cell)), 1)
Any number plus "" becomes text.
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
@Jeff Reisman still only returns correct values when there are multiple contracts in a row, but returns #INVALID VALUE when there is a single contract in the row.
-
Dang, that is frustrating. Your values in Contract are numbers, the values in {Request Contract} are numbers EXCEPT when they are text because there is more than one value in the cell.
Everything misbehaves when there are numbers mixed with text values, too.
As much of a PITA as it is, I think your best bet is make a helper column in each sheet that converts the Contract values into text, and just use the CONTAINS formula on all of them.
Use this in your helper columns:
=IF(ISNUMBER(Contract@row), Contract@row +'', Contract@row)
And change your formula to point at the helper column and helper column range from the other sheet:
=IFERROR(INDEX(COLLECT({Request Notes}, {Request Helper Contract}, CONTAINS(HelperContract@row +"", @cell)), 1), "")
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 137 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!