Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在报告服务中有一个表格小部件,我在给定 ID 上对行进行分组。
对于每个组,我使用 countrows() 显示每组的行数。
如何在报告末尾显示每组的平均行数?
我缺少的是:如何计算组数?
这是来自记忆 - 不确定这个表达式是否正确:
= Count(Fields!ID.Value) / CountDistinct(Fields!ID.Value)
假设您分组的“ID”是单个字段,那么这种表达式应该可以满足您的需求。