Forum Discussion
Mister_T
5 years agoAdvocate I
[DAX Measure] Correct values, but wrong total
Dear Community, again, I am lost in the depth of Power BI and DAX. Any help greatly appreciated! I have the following table 'Sales': Deal ID Deal Closed Deal Won Reseller ...
ERD
5 years agoCommunity Champion
Hi Mister_T ,
Create a second measure:
#Result =
IF(HASONEVALUE('Sales'[Reseller]),
[COUNT_Reseller_Lost],
SUMX(VALUES('Sales'[Reseller]), [COUNT_Reseller_Lost])
)
If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.