Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
ROG
Responsive Resident
Responsive Resident

resources exceeded

Hi all,

 

Can you help me with the issue below?

What can I do to have the visuals loaded?

The pbix file is 3,070KB, and I have removed columns/ hidden keys, but it's still very slow still.

 

ROG_0-1665156274329.png

 

2 ACCEPTED SOLUTIONS
v-mengzhu-msft
Community Support
Community Support

Hi @ROG ,

 

From your error message, it should be an overload triggered by too many visuals, resulting in too many queries.
In this case, you need to check which visual is taking up too many resources and reduce the number of queries applied to it as much as possible.

You can refer to this doc :

Monitor report performance in Power BI - Power BI | Microsoft Learn

 

Best regards,

Community Support Team Selina zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

Thanks @v-mengzhu-msft  this was exactly what I did.

I was using two enourmous tables, and o lot os images and visuals to provide an interactive report to the business. What I did was, using a dataset which had agregated tables. It took me sometime to recreate the report, but it's now way faster.  

View solution in original post

3 REPLIES 3
v-mengzhu-msft
Community Support
Community Support

Hi @ROG ,

 

From your error message, it should be an overload triggered by too many visuals, resulting in too many queries.
In this case, you need to check which visual is taking up too many resources and reduce the number of queries applied to it as much as possible.

You can refer to this doc :

Monitor report performance in Power BI - Power BI | Microsoft Learn

 

Best regards,

Community Support Team Selina zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Thanks @v-mengzhu-msft  this was exactly what I did.

I was using two enourmous tables, and o lot os images and visuals to provide an interactive report to the business. What I did was, using a dataset which had agregated tables. It took me sometime to recreate the report, but it's now way faster.  

edhans
Super User
Super User

This is likely the case of a very inefficient measure, perhaps one that is filtering a FACT table. Example:

SUMX(
   FILTER(
       Sales,
       Sales[Region] = "01"
   ),
   Sales[Amount]
)

 

That will perform horribly and can easily cause memory to be exceeded depending on the size of the Sales table.

CALCULATE(
    SUM(Sales[Amount]),
    Sales[Region] = "01"
)

Would perform about 100x faster with less than 1% of the memory consumption, and that isn't even the best way to do this.

 

But I am guessing here. You need to provide more info.

 

How to get good help fast. Help us help you.

How To Ask A Technical Question If you Really Want An Answer

How to Get Your Question Answered Quickly - Give us a good and concise explanation
How to provide sample data in the Power BI Forum - Provide data in a table format per the link, or share an Excel/CSV file via OneDrive, Dropbox, etc.. Provide expected output using a screenshot of Excel or other image. Do not provide a screenshot of the source data. I cannot paste an image into Power BI tables.



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.