• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Extract Particular text mentioned in look up list

uday

Member
Hi,

I am trying to extract only those values from Column A onto column B which are only available in my lookup list highlighted with yellow.
 

Attachments

  • Text Extracting.xlsx
    8.2 KB · Views: 5
Azumi,

Can you please tell me, why you used 2^15 here?

Also, can I use vlookup instead of lookup?
 
In this case, according to his example, the formula can be simplified,

=IFERROR(LOOKUP(2^15,SEARCH($J$2:$J$5,A2),$J$2:$J$5),"")

Decio
 
Azumi,

Can you please tell me, why you used 2^15 here?

Also, can I use vlookup instead of lookup?
2^15 equates to 32768.
Maximum number of characters a cell can contain is 32767.
So it exceeds the largest number that SEARCH function will possibly return.
 
Last edited by a moderator:
Back
Top