Forum Discussion
hnandarusdy
May 15, 2019Copper Contributor
Search find in excel
This may be a basic question, but I have been looking for the way to find an answer for this over the past few days. Suppose sheet 1, ColumnA: 123 456 789 Then I have another sheet2, colu...
- May 15, 2019
Twifoo , at least that's my understanding of the question. In this its' part.
SergeiBaklan
May 15, 2019Diamond Contributor
Twifoo , the only point the formula shall return result into column B of Sheet1 from A:A in Sheet2.
Twifoo
May 15, 2019Silver Contributor
Perhaps, I misunderstood the requirement. The formula should be in Sheet1!B1, copied down rows, which is:
=INDEX(Sheet2!A:A,
MATCH(“*”&A1&”*”,
Sheet2!A:A,0))
=INDEX(Sheet2!A:A,
MATCH(“*”&A1&”*”,
Sheet2!A:A,0))
- hnandarusdyMay 15, 2019Copper Contributor
Thanks.
This is absolutely the answer. One thing though, the cell must be in "text" format.
edit: I have mistakenly pressed the button of "best response" to SergeiBaklan and I don't know how to change it :(
- TwifooMay 16, 2019Silver ContributorTo convert the result to text, wrap the formula with TEXT, like this:
=TEXT(INDEX(Sheet2!A:A,
MATCH(“*”&A1&”*”,
Sheet2!A:A,0)),"#")
- SergeiBaklanMay 15, 2019Diamond Contributor
Twifoo , at least that's my understanding of the question. In this its' part.