Forum Discussion
Totals on Matrix visual
Hi
I am looking at the Matrix visual in PBI .
I have a dataset like this , This is sample mockup dataset, but the business could put a product into mutiple categories
for e,g Product1 can belong to Cat1 and Cat2
I would like this in a matrix visual with the distinct counts for each category. Plus a grand Total
For some reason the total is coming as 6 when it should have been 12.
Any pointers to how this could be achieved please
- Anonymous3 years ago
Hi msprog ,
You can create a measure as
Count of Product = var _tab=SUMMARIZE('Table',[Category],"count",DISTINCTCOUNT('Table'[Product])) return SUMX(_tab,[count])Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
2 Replies
- Shahfaisal
Solution Sage
If you create a calculated column by concatenating Category and Product, and then create a distinct count measure using this column, would that give you what you are looking for?
- AnonymousNot applicable
Hi msprog ,
You can create a measure as
Count of Product = var _tab=SUMMARIZE('Table',[Category],"count",DISTINCTCOUNT('Table'[Product])) return SUMX(_tab,[count])Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.