SOLVED

How to Match Certain Char and Return a Value from another Table based on the Matched Char?

Copper Contributor

Updated with attachment for demo of the problem

 

 

 

Hi Excel Experts Community,

In one list, OLA is repeated in several cells (under 1 column) but has no fixed position, so it comes in different positions in every cell (e.g., OLA-12, 22-OLA, PE-OLA-00, etc.)

And, in another table, I have two columns. Under the first Column, exactly OLA is listed in one cell along with another value next it to under the second column. The second table has different values under the two columns, so OLA is only in row. 

How can I match OLA only from the 1st list and return the value next to the fixed string, OLA from the second table?


I WOULD BE so grateful for your support to solve this problem.

7 Replies

@PLG_Eng 

Why not upload a small sample file with some dummy data along with the desired output mocked up manually to show the end result you are trying to achieve? That would help to visualize the desired output and to provide an accurate solution.

@Subodh_Tiwari_sktneer 

 

Thank you very much for your response. I have just updated the thread with a file. Please, have a look. 

 

 

best response confirmed by PLG_Eng (Copper Contributor)
Solution

@PLG_Eng 

You may try something like this...

 

Unmerge the cell B4 and then try this...

In B4

=LOOKUP(2,1/(ISNUMBER(SEARCH(TRIM(Table1[[Clean Code ]]),Table2[@CODE]))),Table1[Value])

and then copy it down.

 

Let me know if this is what you were trying to achieve.

 

@Subodh_Tiwari_sktneer 

 

Thank you very much, it does work perfectly. Could you please re-write the formula using cell references instead of column names? 

 

 

Thank You--

 

@PLG_Eng 

You're welcome! Glad it worked as desired.

 

Here is the requested formula...

=LOOKUP(2,1/(ISNUMBER(SEARCH(TRIM($F$4:$F$6),A4))),$G$4:$G$6)

Dear @Subodh_Tiwari_sktneer,

 

Thank you very much, indeed. I truly appreciate it. You really really saved my day!! :) 

 

 

 

 

 

1 best response

Accepted Solutions
best response confirmed by PLG_Eng (Copper Contributor)
Solution

@PLG_Eng 

You may try something like this...

 

Unmerge the cell B4 and then try this...

In B4

=LOOKUP(2,1/(ISNUMBER(SEARCH(TRIM(Table1[[Clean Code ]]),Table2[@CODE]))),Table1[Value])

and then copy it down.

 

Let me know if this is what you were trying to achieve.

 

View solution in original post