Forum Discussion
Use Filters in Measure DAX
- 6 years ago
I would first try your original measure with ALLSELECTED() instead of ALL().
If this works for you, please mark it as solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
- Anonymous6 years ago
Hi DHB ,
You may try to use the below measure:
DIVIDE(COUNT(ACTIVITY[PERSON_CODE]),CALCULATE(COUNT(ACTIVITY[PERSON_CODE]),ALLSELECTED(ACTIVITY)))Please try.
Aiolos Zhao
Hi DHB ,
You need to tell us what's your expected result finally. Because the allselected function is to calculate % by person code.
Please show us the sample data(what you want) and show us what you want(screenshot or image).
It's better to give some examples for different scenarios.
Aiolos Zhao
This page in my report is filtered to 2019 and active users (1102 in total). My original DAX didn't filter out other years or user states so gave me a % of 60.9 in the gauge. the new DAX gives me the right % but it doesn't change when I move the slider on the left.