• 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.

Lookup Text in various row and result text in other column

Lookup Text in various row and result text in other column

  • Lookup Text in various row and result text in other column

    Votes: 0 0.0%
  • Lookup Text in various row and result text in other column

    Votes: 0 0.0%

  • Total voters
    0

Raghu

New Member
Need to know the formulae for extracting particular text in other column while using VLOOKUP.

Example :attached file
 

Attachments

  • Example.xlsx
    10.1 KB · Views: 6
Hello Raghu,

Hre is one way:

=LOOKUP(100^100,SEARCH(E$2:E$5,A2),E$2:E$5)

If yoy want to look for CASE sensitive change SEARCH to FIND.
 
It denotes a very LARGE number ;)

Lookup finds the largest number in the array, if all numbers are smaller than the lookup value itself. For example,

=LOOKUP(100^100,{1,2,3,4,5,50},{10,12,14,16,18,20}) will return 20, while

=LOOKUP(5,{1,2,3,4,5,50},{10,12,14,16,18,20}) will return 18.

HTH
 
Back
Top