Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join 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.

Reply
aviritia
Frequent Visitor

Slow calculations with DISTINCTCOUNT

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

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@aviritia,

This article gives a perfect explaination on why removing FILTER will speed up your DAX. 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

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!

akyler
Regular Visitor

 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]))

 

Anonymous
Not applicable

@aviritia,

This article gives a perfect explaination on why removing FILTER will speed up your DAX. 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.