訓練
模組
在 Power BI Desktop 模型中使用 DAX 迭代器函式 - Training
在此課程模組的結尾,您將會了解迭代器函式系列的功能,以及如何在 DAX 計算中加以使用。 計算包含了自訂摘要、排名及串連。
List.Accumulate(list as list, seed as any, accumulator as function) as any
使用 list
以從清單 accumulator
中的項目累積摘要值。 或可設定選擇性的種子參數 seed
。
使用 ((state, current) => state + current) 來從清單 {1, 2, 3, 4, 5} 中的項目累積摘要值。
使用方式
List.Accumulate({1, 2, 3, 4, 5}, 0, (state, current) => state + current)
輸出
15
訓練
模組
在 Power BI Desktop 模型中使用 DAX 迭代器函式 - Training
在此課程模組的結尾,您將會了解迭代器函式系列的功能,以及如何在 DAX 計算中加以使用。 計算包含了自訂摘要、排名及串連。