列表比较Google表格

时间:2017-12-29 21:25:33

标签: google-sheets

我有一系列宽度和高度

的项目
A         B           C
Item    Width    Height
I1        1           1
I2        1           1
I3        1.25      1
I4        1           1.25

我想确定我们拥有的每个维度的数量

                    Width
            1       1.25        1.5 ...
            1       X           Y
            1.25    Z
Height      1.5
            ...

X = 2
Y = 1
Z = 1

我需要知道要放入单元格X,Y和Z等的函数...

寻找类似

的内容
X = Count row 2:5 where B(row) = 1 and C(row) = 1
Y = Count row 2:5 where B(row) = 1.25 and C(row) = 1
Z = Count row 2:5 where B(row) = 1 and C(row) = 1.25

2 个答案:

答案 0 :(得分:1)

我不确定我理解你的问题,但试试这个:

表示x:

=countifs (B2:B ,"=1",C2:C ,"=1")

表示y:

=countifs (B2:B ,"=1",C2:C ,"=1.25")

表示z:

=countifs (B2:B ,"=1.25",C2:C ,"=1")

答案 1 :(得分:0)

如果您有多种可能的组合,请考虑制作类似的东西......

Google Sheet

Dimensions Count

从这样的长度和宽度中获取唯一值......

<强>宽度

=INDEX(UNIQUE(B2:B))

<强>高度

=TRANSPOSE(UNIQUE(C2:C))

<强>网格

首次查找公式(1:1)

=COUNTIFS($B$2:$B,$E4,$C$2:$C,F$3)