Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello Guys!
I have a list of users with all their accesses and I wanted to see how many users I have for the same country, same system, same risk ID and same business role. To achieve that I used DISTINCTCOUNT function:
=IF([No. of roles per user] = 1; CALCULATE(DISTINCTCOUNT([User ID]); FILTER('raw data';[Country] = EARLIER([Country])); FILTER('raw data';[System] = EARLIER([System])); FILTER('raw data';[Access Risk ID] = EARLIER([Access Risk ID])); FILTER('raw data';[Composite/Business Role] = EARLIER([Composite/Business Role])));1)
And it works perfectly, the outcome is correct, however I have a huge amount of data and DISTINCTCOUNT slows down my calculations a lot.
Do you maybe know or have an idea how can I replace DISTINCTCOUNT funtion to get the identical result but faster? Each quarter I will have more and more data (now it's around 300k lines, so next quarter it will be twice that) and it will be getting only worse with the way I did that.
I'd appreciate your help.
Best regards
Kate
Solved! Go to Solution.
This article gives a perfect explaination on why removing FILTER will speed up your DAX.
I ran into the similar issue while doing it in calculated column. Can you post the formula that you modified to make it work.
Appreciate any help!
In general, I think DISTINCTCOUNT causes performance issues. COUNTROWS on a summarized table might actually provide much better performance. Something like:
=COUNTROWS( SUMMARIZE( FILTER('raw data', [Country] = EARLIER([Country]) &&[System] = EARLIER([System]) &&[Access Risk ID] = EARLIER([Access Risk ID]) &&[Composite/Business Role] = EARLIER([Composite/Business Role])) ,[User ID]))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
73 | |
58 | |
36 | |
32 |
User | Count |
---|---|
90 | |
60 | |
60 | |
49 | |
45 |