Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi Folks,
My measure is causing my visual to take 90 seconds to load. The issue is with summarizing the data. If i change the false statement of "hasonefilter' to 'test', it is very fast.
But when i include the summarize code, the performance takes a huge hit:
Any help would be appreciated.
Solved! Go to Solution.
Hi @airwolf39 ,
Maybe you can use SELECTCOLUMNS instead of SUMMARIZE and use ISINSCOPE instead of HASONEFILTER.
The efficiency of your measure is not only dependent on the dax formula you use, it's also be decided by the model structure(e.g.: columns/rows number, relationship)
In addtion, I would suggest you use the tools "performance analyze" in power bi. This tool will show you the underlying dax function, you can know how complex your measure is.
You can also refer to the doc and blog below to improve your model.
https://docs.microsoft.com/en-us/power-bi/power-bi-reports-performance
https://www.sqlbi.com/articles/introducing-the-power-bi-performance-analyzer/
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @airwolf39 ,
Maybe you can use SELECTCOLUMNS instead of SUMMARIZE and use ISINSCOPE instead of HASONEFILTER.
The efficiency of your measure is not only dependent on the dax formula you use, it's also be decided by the model structure(e.g.: columns/rows number, relationship)
In addtion, I would suggest you use the tools "performance analyze" in power bi. This tool will show you the underlying dax function, you can know how complex your measure is.
You can also refer to the doc and blog below to improve your model.
https://docs.microsoft.com/en-us/power-bi/power-bi-reports-performance
https://www.sqlbi.com/articles/introducing-the-power-bi-performance-analyzer/
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This would be a good time to open up DAX Studio and have a look at the query plan for that measure. Specifically watch out for excessive looping. You have lots of nested measures too - the recommendation is to avoid that if possible.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 60 | |
| 45 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 109 | |
| 108 | |
| 39 | |
| 30 | |
| 27 |