Forum Discussion
Matrix Row Subtotals Incorrect
- Anonymous2 years ago
Hi mdol678 ,
Exceptions to the total value in the matrix are generally the result of calculations in the measure formula added to the value(and not the result of dragging the original field into the value for automatic aggregation). You can refer to the location of the following screenshot to see the fields or measures used in the created matrix.
Also I have made simple demos which I hope will help you understand.
result_ = COUNTROWS('Table')assets = IF ( HASONEVALUE ( 'Table'[Status] ), COUNTROWS ( 'Table' ), COUNTROWS ( FILTER ( 'Table', 'Table'[Other] <> "No pass" ) ) )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 mdol678 ,
Exceptions to the total value in the matrix are generally the result of calculations in the measure formula added to the value(and not the result of dragging the original field into the value for automatic aggregation). You can refer to the location of the following screenshot to see the fields or measures used in the created matrix.
Also I have made simple demos which I hope will help you understand.
result_ = COUNTROWS('Table')assets =
IF (
HASONEVALUE ( 'Table'[Status] ),
COUNTROWS ( 'Table' ),
COUNTROWS ( FILTER ( 'Table', 'Table'[Other] <> "No pass" ) )
)
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.