Forum Discussion
Tom_Khachatryan
Jul 19, 2021Copper Contributor
VLOOKUP formula - match two columns (partial) and return value
Hello there. I am facing an issue trying to match two columns and return value to third with the Vlookup formula. The idea is to do an approximate name match and get the correct value. ...
- Jul 19, 2021
Does this work for you?
=VLOOKUP(LEFT(C8,FIND("^",SUBSTITUTE(C8," ","^",3))-1)&"*",$J$3:$K$29,2,0)
Tom_Khachatryan
Jul 19, 2021Copper Contributor
Subodh_Tiwari_sktneer, it is superb. Thank you.
Subodh_Tiwari_sktneer
Jul 19, 2021Silver Contributor
You're welcome Tom_Khachatryan! Glad it worked as desired.
- Tom_KhachatryanJul 20, 2021Copper Contributor
Hello Subodh_Tiwari_sktneer , I tried the same formula in another sheet, but still getting the same error. I can not understand the core of this issue.
- Subodh_Tiwari_sktneerJul 22, 2021Silver ContributorPlease pay attention to the lookup value in the formula, the values in lookup_column in the table_array must start with the lookup value.