我有一个Google电子表格,其列如下所示:
City
----
London
Paris
London
Berlin
Rome
Paris
我想统计每个不同城市的外观(因此我需要城市名称和出现次数)。
City | Count
-------+------
London | 2
Paris | 2
Berlin | 1
Rome | 1
我怎么做?
我有一个Google电子表格,其列如下所示:
City
----
London
Paris
London
Berlin
Rome
Paris
我想统计每个不同城市的外观(因此我需要城市名称和出现次数)。
City | Count
-------+------
London | 2
Paris | 2
Berlin | 1
Rome | 1
我怎么做?
Answers:
解决方案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
其他可能有用的链接
您可以使用该query
函数,因此,如果您的数据位于第一行为列标题的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
label A 'City', count(A) 'Total'
=iferror(counta(unique(A1:A100)))
计算从A1到A100的唯一像元数
= UNIQUE({filter(Core!L8:L27,isblank(Core!L8:L27)= false),query(ArrayFormula(countif(Core!L8:L27,Core!L8:L27)),“选择Col1,其中Col1 < > 0“)})
核心!L8:L27 =列表
IF()
和COUNTIF()