Forum Discussion
msprog
Advocate III
3 years agoTotals 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...
- 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.
Shahfaisal
Solution Sage
3 years agoIf 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?