Forum Discussion
URGENT need help - partial match to get answer excel
=VLOOKUP("*"&LEFT(B2,15)&"*",CHOOSE({1,2},Legend!$C$2:$C$20,Legend!$B$2:$B$20),2,FALSE)
Do you want to return the contribution level? This could be possible with above formula. Enter the formula as arrayformula with ctrl+shift+enter if you don't work with Office365 or 2021.
- harshulzFeb 07, 2022Iron Contributor
hi, i m a excel learner and curious to know & discuss, i wonder why you used "*"& in lookup argument of vlookup rather than only left function? i tried with only left function & didn't recieve any results.
i would appreciate if you help me out of it.- OliverScheurichFeb 08, 2022Gold Contributor
If you enter "*"&LEFT(B2,14)&"*" as search value VLOOKUP performs a partial match. For example the search value "Senior manager" would be found in the search array within the strings "Senior manager assistant" and "Executive Senior manager director".
Search value LEFT(B2,14) would mean that VLOOKUP performs an exact match. There would only be a search result if e.g. search value is "Senior manager" and the string "Senior manager" is found in the search array.
- harshulzFeb 08, 2022Iron Contributorooh that way, now i get it, thank you quadruple.
- bbsinFeb 07, 2022Iron ContributorHi OliverScheurich,
Thank you for your kind reply. Yes I want to return the CL. I try putting the formula to the sheet, it show NA? I might have done something not right.
My data is in one worksheet and the legend in other worksheet. There's one more column of information in the legend before the CL and Title.
May I know does CHOOSE({1,2} stands for?
Thank you- OliverScheurichFeb 08, 2022Gold Contributor
Does this mean that contribution level is in column C and position is in column D of the Legend sheet?
You would need to adapt the formula according to the actual layout of your data.
=VLOOKUP("*"&LEFT(B2,14)&"*",CHOOSE({1,2},Legend!$D$2:$D$20,Legend!$C$2:$C$20),2,FALSE)
This formula works in the attached file. If you don't work with Office 365 or 2021 you have to enter the formula with ctrl+shift+enter.
In this example CHOOSE({1,2} allows within the VLOOKUP to search for the search value in range Legend!$D$2:$D$20 and to return the corresponding value from range Legend!$C$2:$C$20.