Forum Discussion
Row Subtotals Not Adding Up
- 2 years ago
BUC , You can try measure like this based on visual column/row/axis field
If one column is not summarized
Sumx(Values(Table[Column]), [Your measure] )
More than one column
Sumx(Summarize(Fact, Dim[Col1], Dim[COl2]), [Your measure] )
Also refer: https://www.youtube.com/watch?v=ufHOOLdi_jk
- Anonymous2 years ago
Hi BUC ,
You can use the sumx function for cumulative summation. Refer to the following demo:
m_ = CALCULATE ( MAX ( 'Table'[Value] ), FILTER ( 'Table', 'Table'[Status] = "Pass" ) )total_ = SUMX('Table',[m_])Best Regards,
Adamk KongIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi BUC ,
You can use the sumx function for cumulative summation. Refer to the following demo:
m_ =
CALCULATE (
MAX ( 'Table'[Value] ),
FILTER ( 'Table', 'Table'[Status] = "Pass" )
)
total_ = SUMX('Table',[m_])
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.