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