Table.AggregateTableColumn
語法
Table.AggregateTableColumn(table as table, column as text, aggregations as list) as table
關於
將 table
[column
] 中資料表彙總成包含資料表彙總值的多個資料行。 aggregations
是用來指定包含要彙總的資料表資料行、要套用至資料表以產生其值的彙總函式,以及所要建立彙總資料行的名稱。
範例 1
將資料表 {[t = {[a=1, b=2, c=3], [a=2,b=4,c=6]}, b = 2]}
中 [t]
資料表資料行彙總成 [t.a]
的總和、[t.b]
的最小值與最大值,以及 [t.a]
中值的計數。
使用方式
Table.AggregateTableColumn(
Table.FromRecords(
{
[
t = Table.FromRecords({
[a = 1, b = 2, c = 3],
[a = 2, b = 4, c = 6]
}),
b = 2
]
},
type table [t = table [a = number, b = number, c = number], b = number]
),
"t",
{
{"a", List.Sum, "sum of t.a"},
{"b", List.Min, "min of t.b"},
{"b", List.Max, "max of t.b"},
{"a", List.Count, "count of t.a"}
}
)
輸出
Table.FromRecords({[#"sum of t.a" = 3, #"min of t.b" = 2, #"max of t.b" = 4, #"count of t.a" = 2, b = 2]})