Forum Discussion
ansar
4 years agoHelper II
Distinct count with filter showing wrong numbers
Hi, Can any one help here what is the correct DAX formula , I have a measure to find out unique numbers of customers who is contributing 80% of the provision value (Measure [Prov USD]) Ima...
Fowmy
4 years agoSuper User
ansar
Can you try the following measure? You can add the Customer Key or Code .
Customers Contribute 80% =
COUNTROWS (
FILTER ( VALUES ( 'Customer DB'[Customer ID] ), [Cumulative %] <= 0.8 )
)