我有一个按日期过滤的SSRS数据集,结构如下:
ProductId QuantitySold
1 24
2 47
3 34
... ...
我无法弄清楚如何添加计算出的度量来提供销售产品的商店数量。我有一个名为sales的组度量,它与多个维度(Products,Stores,Time ..)和度量QuantitySold相关联。
我尝试了distinctcount of Stores属性,但数据集不会执行。
期望的结果应与此类似:
ProductId QuantitySold NumberOfStores
1 24 3
2 47 12
3 34 2
FactSales具有以下属性:
StoreId ProductId DateId Quantity Total
非常感谢任何帮助!