Forum Discussion
Help with Query has exceeded available sources error
- Anonymous1 year ago
Hi, BaldAccountant
Thanks for AnkitaaMishra's reply. The issue occurs when a visual has attempted to query too much data for the server to complete the result with the available resources.As suggested in the error, you may need to try filtering the visual to reduce the amount of data in the result currently. there is limit. Apply data-point limits and strategies by visual type
And you can follow the tips to optimize your report:
1.Do not expose in a view a column that is not necessary in the Power BI data model.
2.Optimize the DAX calculation used in this visual to use less memory and return faster or change what the visual displays.
3.Remove unnecessary precision or split granularity values to reduce cardinality(Significantly reduce highly unique datetime values by splitting the date and time into separate columns. )
This is the related document, you can view this content:
The “Visual Has Exceeded The Available Resources” Error In Power BI
Visual has exceeded the available resources - Table Visual
Error: Resource Governing - Microsoft Power BI Community
resources exceeded - Microsoft Power BI Community
only Premium capacity can increase the per-query memory limit, you can refer to these articles if you need: What is Power BI Premium? How to purchase Power BI Premium
Best Regards,
Yang
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi BaldAccountant ,
Try creating base measures and then use it in your SWITCH statement.
Example : Create a measure for :
_TotalYTD = TOTALYTD([Cases],Dates[Date])
Then modify the switch statement as :
OR try referring below links :
https://community.fabric.microsoft.com/t5/Desktop/Visual-has-exceeded-available-resources/td-p/1218512
https://community.fabric.microsoft.com/t5/Service/visual-has-exceeded-available-resources/m-p/560338
Thanks,
- BaldAccountant1 year agoHelper III
Sorry but that did not change the outcome.