Forum Discussion
Anonymous
5 years agoNot applicable
DAX: Distinct count with multiple filters
Hi, I'm quite new to DAX and I don't seem to get a good formula for the below calculation. I have many products that were sold over the years. Now, I want to distinct count the products that were ...
Jos_Woolley
Solution Sage
5 years agoHi,
Distinct_Vol>50_Year2021 =
CALCULATE (
DISTINCTCOUNT ( Sales[Product] ),
'Calendar'[Year] = 2021,
Sales[Volume] > 50
)Regards
- Anonymous5 years agoNot applicable
Thanks Jos, however this is not working, please find more info on figure below:
- Peppermint_T4 years agoFrequent Visitor
Great simple & elegant solution. Thank you.