我有 2 个组的 SSRS 报告
GroupParent (State) with totals = CountDistinct(Fields!fieldFromDataset.Value) 这工作正常
相同字段 Fields!fieldFromDataset.Value 的 GroupChild(技术名称)
我需要添加一个最终总计,其中包含每个 groupchild 中打印的所有行数的总和
State techname
================
NSW techname1
techname2
total NSW 2 techs
QLD techname1
techname3
techname4
total QLD 3 techs
Final Total 5 techs ----> 我不能使用相同的表达式,因为在不同的州有一些技术名称相同的记录
我创建了另一列来显示CountDistinct(Fields!fieldFromDataset.Value)
每个组 Parent 的表达式结果,即显示正确的值。但我不能使用这个reportItems!SUM() 中的变量