标签: excel excel-formula
我有两个列表,每个列表包含以下参数:Serial number,name of product和name of the owner。
Serial number
name of product
name of the owner
我希望能够比较两个列表,以便能够标记重复项,其中副本必须具有相同的所有三个类别。一个列表通常包含更多项目,列表没有组织。
通常我会使用这个公式:
=IF(COUNTIF($B:$B,$A:$A)=0, " ", " V ")
检查一个参数的无组织值,但我不知道如何对所有三个参数执行此操作。有人可以提出解决方案吗?
答案 0 :(得分:1)
使用这样的样本数据:
公式为:
=IFERROR(INDEX(MATCH(E2&F2&G2,$A$2:$A$8&$B$2:$B$8&$C$2:$C$8,0),1)>0,FALSE)
其中:
E2&F2&G2
MATCH
$A$2:$A$8&$B$2:$B$8&$C$2:$C$8
TRUE
INDEX
FALSE
#VALUE!