Excel - 查找一系列数据以匹配字符串中的字符

时间:2017-09-21 22:48:57

标签: excel search lookup

在我来到这里之前,我用Google搜索了。

我有2列信息(我必须使用备用数据来保护隐私)。见下文。

我希望在第3列中查看第一列的列表(或范围)并返回匹配的单词。例如,我需要第一句第3栏(柜台上有一个杯子)来说" CUP"。

我尝试过各种各样的功能组合,但我无法做到这一点。

1st column    2nd column                       3rd column
Desk          There is a cup on the counter    **Result should be: Cup**
Chair         You need to plug the cord in
Cup           The desk is red
Cord          I have a large computer
Computer      I put the chair over there

1 个答案:

答案 0 :(得分:0)

假设第1行是标题行,请将此公式放在单元格C2中并向下复制:

=IFERROR(INDEX($A$2:$A$6,MATCH(1,INDEX(COUNTIF(B2,"*"&$A$2:$A$6&"*"),),0)),"")