Google表格:如何查找按另一列值分组的一列中的值的平均值?

时间:2015-11-30 02:25:52

标签: google-sheets google-docs

假设我有一张包含以下数据的Google表格:

Column1|Column2
A|1
A|2
A|3
A|4
B|1
B|2

我想找到Column2中按Column1的值分组的值的平均值,因此输出类似于以下内容:

A|2.5
B|1.5

我应该看query吗?或者使用pivot tables

2 个答案:

答案 0 :(得分:2)

通过数据透视表

Range: Sheet1!A1:B7

Rows: 
   Group by: Column1

Columns: 
   Group by: Column2

Calculated Field: 
   Forumula: =AVERAGE=(Column2)
   Summarise by: Custom

结果

            1   2   3   4   Grand Total
A           1   2   3   4   2.5
B           1   2           1.5
Grand Total 1   2   3   4   2.166666667

注意:我无法弄清楚如何将文本总计更改为平均值

答案 1 :(得分:0)

此公式还将为您提供示例输出:

=QUERY(A:B,"select A,avg(B) where A <> '' group by A label A '', avg(B) ''")