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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Mainer04401
Helper III
Helper III

Count stores with sales > zero measure calculating very slowly

I'm using the following DAX to calculate the number of stores with sales greater than zero and it's causing any visuals with this measure to load VERY slowly.  Is there a more efficient way to calculate this?

 

calculate(
distinctcount([Store ID]),
filter('Data Table',[Sales]>0)

)

 

I have 180,000 stores and six time periods, each time period appended (not loaded) into one table, so it's just over 1 million rows that PowerBI is working through.  I'm grouping the stores by dimensions in a seperate lookup table.  So, for example, I may be showing the store count in each of the 50 states in a matrix table.  

 

1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

Hi @Mainer04401 

I see the only way to make statement like (notice, without FILTER())

calculate(
distinctcount([Store ID]),
[Sales]>0

)

 Try to filter out during ETL process or in Power Query editor mode


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

5 REPLIES 5
az38
Community Champion
Community Champion

Hi @Mainer04401 

I see the only way to make statement like (notice, without FILTER())

calculate(
distinctcount([Store ID]),
[Sales]>0

)

 Try to filter out during ETL process or in Power Query editor mode


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
Klabonty
Frequent Visitor

Well it sure makes sense when you show me!

 

Thanks!!

@az38Thanks but that formula gives me the error: A function "CALCULATE" has been used in a True/False expression that is used as a table filter expression.  This is not allowed.  

az38
Community Champion
Community Champion

ok, @Mainer04401 

what is [Sales]? is it a measure or calculated column? if yes, show the statement


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

@az38It is a measure with the statement: sum([Sales Volume].  Sales Volume is the native column in the data.  

 

I modified the store count formula, replacing that measure with the native sales volume column (without filter) and it appears to be accurately counting the stores with positive volume and doing it MUCH quicker!  I had used the filter function because I thought I needed it to iterate through the table, otherwise for example I thought it would count every store in a state if the entire state had volume greater than zero (if the state was in the visual) , rather than only counting individual stores with positive sales.   But I guess when I'm referencing the column, it puts it in row level context, so it works.  Thanks!

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.