March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
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.
Solved! Go to Solution.
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
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
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.
ok, @Mainer04401
what is [Sales]? is it a measure or calculated column? if yes, show the statement
@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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
202 | |
137 | |
106 | |
70 | |
68 |