标签: excel excel-formula
第一个单词匹配vlookup
dave davidson friend (cell A1), ? (cell B1)
dave davidson friend brother (cell A1), 23 (cell B1) gang gang nice (cell A2), 54 (cell B2)
我想进行vlookup操作,使结果为23
答案 0 :(得分:0)
尝试以下公式。
=INDEX(Sheet2!$B$1:$B$10,MATCH(LEFT(A1,SEARCH(" ",A1)-1)& "*",Sheet2!$A$1:$A$10,0))
Sheet1:
第2张:
答案 1 :(得分:0)
您可以使用:
=VLOOKUP( "*" & A1 & "*",Sheet2!$A$1:$B$3,2,FALSE)