Excel为一个密钥ID Excel多个值

时间:2017-01-18 18:16:53

标签: excel

在Excel中我设置了数据,因此列A是类别,列B是ID。我想弄清楚如何计算给定的"订单ID" (Col B)存在多个类别(Col A)。

enter image description here

Cat ID
Bar 12123
Bar 11111
Foo 12345
Foo 22222
Foo 22222
Foo 88888
Bar 90909
Foo 88888
Bar 90909
Foo 88888
Foo 88888
Bar 90909
Foo 88888
Bar 90909
Foo 90909
Foo 11111
Bar 90909

我想计算给定的" ID"存在于多个"类别",如此:

enter image description here

Cat ID      Example
Bar 12123   FALSE
Bar 11111   TRUE
Foo 12345   FALSE
Foo 22222   FALSE
Foo 22222   FALSE
Foo 88888   FALSE
Bar 90909   TRUE
Foo 88888   FALSE
Bar 90909   TRUE
Foo 88888   FALSE
Foo 88888   FALSE
Bar 90909   TRUE
Foo 88888   FALSE
Bar 90909   TRUE
Foo 90909   TRUE
Foo 11111   TRUE
Bar 90909   TRUE

在上面的示例中,我手动键入了列C.我试图找出计算它的最佳方法。任何帮助将不胜感激。我的真实世界的例子有几千行。

2 个答案:

答案 0 :(得分:0)

在C2中使用COUNTIFS():

=COUNTIFS(A:A,"<>" & A2,B:B,B2)>0

复制/向下拖动。

enter image description here

答案 1 :(得分:0)

听起来你正在寻找=COUNTIFS(A:A,"<>"&A1,B:B,B1)>0(假设你在C1中输入这个公式)。