我有一个与二维表有关系的事实。
- 直接关系
- 过桥表
我创建了一个总和度量,应该对 Amount 列进行汇总。
我创建了两个没有给我预期结果的查询
查询一:
Sum of Amount:= CALCULATE(SUM(Fact[Amount]))
当前结果:总计为 600
查询 2:
Sum of Amount:= IF(HASONEVALUE('Dimension 1'[value]),CALCULATE(SUM(Fact[Amount])),
SUMX(VALUES('Dimension 1'[value]),CALCULATE(SUM(Fact[Amount]))))
当前结果:总计为 400
Expected result : When the Dimension 1 is selected, the grand total should be 400 and when the Dimension 2 selected the Grand total should be 600.
谁能帮我实现这一目标?