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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi everyone,
I have made an Stocks Report using as example Source CSVs. It works OK, giving me all what I need, but indeed it's a bit slow.
The main problem is that once I migrated this report to my CUBE in SSAS, well, things have gotten even worse, with warnings about that my Azure doesnt have enough resources, and asking me to upgrade. The thing is that actually I did it, and still in some cases is claiming for even more resources (for instance when I filter more months for some calculations). So it's clear that its a DAX issue I think.
Heres the error:
(Not enough resources, consider to use filters and reduce data)
So, I believe that the main responsable here is this measure:
Hi @okusai3000 ,
Power BI has requirements for hardware. If your dataset is large, the hardware requirements for data processing will be higher.You could open the Resource Monitor to check the resource usage while using Power BI.
In addition, you could try to optimize the measure, such as modify
measure = calculate([aaa],filter(table,conditions))
to
measure =
var table1 = filter(table,conditions)
return
calculate([aaa],table1)
Best Regards,
Jay
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |