If two cells match, return value from third

后端 未结 3 1470
走了就别回头了
走了就别回头了 2020-11-29 03:43

Here\'s a simple explanation of what I\'m having trouble with.

Column A: List of 2300 order numbers
Column B: Email Address associated with an order number
C

3条回答
  •  不知归路
    2020-11-29 04:10

    =IF(ISNA(INDEX(B:B,MATCH(C2,A:A,0))),"",INDEX(B:B,MATCH(C2,A:A,0)))
    

    Will return the answer you want and also remove the #N/A result that would appear if you couldn't find a result due to it not appearing in your lookup list.

    Ross

提交回复
热议问题