gpt4 book ai didi

reporting-services - 如何获取SSRS中列的平均值

转载 作者:行者123 更新时间:2023-12-04 07:53:53 25 4
gpt4 key购买 nike

我有一张这样的 table 。

Data Table

我想使用 SSRS 来呈现这样的报告。

Report

我在这份报告中使用了一个矩阵。将[Category]、[Commodity] 添加到行组,将[SaleDate] 添加到列组,将Sum(SaleAmount) 添加到列数据,为[Commodity] 行组添加Sum(SaleAmount),在最后一个单元格添加Avg(SaleAmount) .

enter image description here

但是Avg(SaleAmount)的值不是(3+5+2)/3 = 3.3333,它的值是(2+1+3+2+1+1)/6 = 1.666666....

enter image description here

谁能帮我?谢谢!

最佳答案

平均值只是总和除以计数。在这种情况下,总和是相同的,但您希望计数只是不同的商品。使用 CountDistinct应该管用:

=SUM(Fields!SaleAmount.Value) / COUNTDISTINCT(Fields!Commodity.Value)

关于reporting-services - 如何获取SSRS中列的平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21511480/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com