Forum Discussion
Anonymous
3 years agoNot applicable
Stacked Product Count
Hi Everyone, I have been trying to figure this out but am getting nowhere. I have a dataset with customers and the products each customer is using. What I need is for get a count of what customer is...
- 3 years ago
Hi, Anonymous
Measure can't make slicers, Column can. You can try the following methods.
Count Product = CALCULATE(DISTINCTCOUNT('Table'[Product]),ALLEXCEPT('Table','Table'[Customer]))Measure:
Count Client = CALCULATE(DISTINCTCOUNT('Table'[Customer]),ALLEXCEPT('Table','Table'[Count Product]))Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Ahmedx
3 years agoSuper User
1) product column insert into rows
2) write down the measure as follows:
Count= DISTINCTCOUNT('Таблица'[Клиенты])