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
Hello,
I have a table that takes forever to load. Anytime I use any slicers, same thing applies (SLOW to load). To my understanding, this is largely due to the columns in my table being comprised of measures with code that looks like this:
The reason I have the COUNTROWS function is to fix my totals row. Prior to implementing this logic, my totals row would always be incorrect.
My question is:
How can I increase the speed of my table? Is there a better way to fix my totals line?
Thanks,
Joel
Solved! Go to Solution.
Using just the SUMX part should cover both cases (since it would only sum over one group for the non-total lines).
forecasted_base_incentive =
SUMX (
VALUES ( 'gwp_forecast_master'[distributor_name (groups)] ),
[forecasted_base_incentive_%] * [forecasted_2022_sales]
)
How well this measure performs is mostly dependent on how well each of the measures you're multiplying together performs. What are the definitions for these?
@Anonymous , please provide the measure in text format. Also share logic what you are trying to build
Using just the SUMX part should cover both cases (since it would only sum over one group for the non-total lines).
forecasted_base_incentive =
SUMX (
VALUES ( 'gwp_forecast_master'[distributor_name (groups)] ),
[forecasted_base_incentive_%] * [forecasted_2022_sales]
)
How well this measure performs is mostly dependent on how well each of the measures you're multiplying together performs. What are the definitions for these?
Alexis,
You just made my day! Everything is updating very quickly again. Such a simple solution, but very powerful.
Thanks again,
Joel
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 |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |