我有一个包含列Filament和System id的数据集
Filament System id
102 1
107 1
534 2
235 1我需要创建一个显示平均Result的计算列,如下所示:
Filament System id Result
102 1 102
107 1 (102+107)/2
534 2 534
235 1 (102+107+235)/3如何计算这个平均值列?
发布于 2016-03-30 17:57:41
Row_ID):结果的RowId()
Avg([Filament]) over (Intersect(allPrevious([row_ID]),[System id]))

https://stackoverflow.com/questions/36301859
复制相似问题