我有一个Google电子表格,其中的列如下所示:
City
----
London
Paris
London
Berlin
Rome
Paris
我想计算每个不同城市的外观(所以我需要城市名称和出现次数)。
City | Count
-------+------
London | 2
Paris | 2
Berlin | 1
Rome | 1
我该怎么做?
答案 0 :(得分:79)
解决方案0
这可以使用数据透视表来完成。
解决方案1
使用unique
公式获取所有不同的值。然后使用countif
获取每个值的计数。请参阅顶部的工作示例链接,以确切了解其实现方式。
Unique Values Count
=UNIQUE(A3:A8) =COUNTIF(A3:A8,B3)
=COUNTIF(A3:A8,B4)
...
解决方案2
如果您按原样设置数据:
City
----
London 1
Paris 1
London 1
Berlin 1
Rome 1
Paris 1
然后以下将产生所需的结果。
=sort(transpose(query(A3:B8,"Select sum(B) pivot (A)")),2,FALSE)
我确信有一种方法可以摆脱第二列,因为所有值都是1.在我看来,这不是一个理想的解决方案。
通过http://googledocsforlife.blogspot.com/2011/12/counting-unique-values-of-data-set.html
其他可能有用的链接
答案 1 :(得分:18)
=iferror(counta(unique(A1:A100)))
计算从A1到A100的唯一单元格数
答案 2 :(得分:10)
您可以使用query
功能,因此,如果您的数据位于第一行是列标题的col A ...
=query(A2:A,"select A, count(A) where A != '' group by A order by count(A) desc label A 'City'", 0)
产量
City count
London 2
Paris 2
Berlin 1
Rome 1
链接到Google工作表。
https://docs.google.com/spreadsheets/d/1N5xw8-YP2GEPYOaRkX8iRA6DoeRXI86OkfuYxwXUCbc/edit#gid=0
答案 3 :(得分:3)
答案 4 :(得分:1)
如果您只想计算唯一值,例如以下范围
=counta(unique(B4:B21))
答案 5 :(得分:0)
这类似于@JSuar的解决方案1 ......
假设您的原始城市数据是名为dataCity
的命名范围。在新工作表中,输入以下内容:
A | B
----------------------------------------------------------
1 | =UNIQUE(dataCity) | Count
2 | | =DCOUNTA(dataCity,"City",{"City";$A2})
3 | | [copy down the formula above]
4 | | ...
5 | | ...
答案 6 :(得分:-1)
= UNIQUE({filter(Core!L8:L27,isblank(Core!L8:L27)= false),query(ArrayFormula(countif(Core!L8:L27,Core!L8:L27)),“选择Col1其中Col1 <> 0“)})
Core!L8:L27 =列表