我在SSRS 2008中设计了一个报告。(SQL Server 2008 DB)
我有2个字段,属性代码和单元代码。 我想计算不同的单位。
CountDistinct(unitCode) works when I run the report for one property.
但是当我为多个属性运行报告(并且单位代码在不同的属性中可以相同)时,计数是错误的。
例如:
属性表
pCode address
10 Addr1
20 Addr2
30 Addr3
单位表
unitCode pCode
101 10
102 10
101 20
103 30
这里单元代码101在2个属性中重复。
CountDistinct(unitCode) is failing here.
所以我试过
CountDistinct(Fields!pCode.Value & " " & Fields!unitCode.Value)
但它给了我一个错误 指定的操作无效。
我是如何获得多个属性的不同单位计数的?