Forum Discussion
(Yet another) “Visual Has Exceeded The Available Resources” Error
- Anonymous8 months ago
Hi iW1DOV ,
Thank you for the update.
Since both the visual filter and the “visible measure” method still result in the resource exceeded error, this shows that the problem isn’t with the filter itself. The engine is processing the KPI at a highly detailed level, which leads to a large intermediate result and exceeds available memory, even with a basic condition like > 0.01.
To prevent this row-level recalculation, the most effective workaround is to move the threshold logic outside of the measure.
Recommended Options
- Create a Visibility Flag in the model
Add a column upstream (Power Query/Dataflow) like:
VisibilityFlag = if [KPI] < 0.01 then 0 else 1
Then, filter the visual using this flag to avoid costly measure-based filtering. - Pre-round the KPI column
If near-zero floating values aren't significant, round them during data preparation. This prevents unrounded values from causing heavy computations when filtering. - Check measure complexity
If the KPI uses iterators (SUMX/FILTER on large tables), consider moving some calculations into the model or using pre-aggregated tables to lower memory usage.
If you can provide a simplified version of the KPI measure, we can help identify what’s causing the resource usage and suggest a more efficient version.
Thank you.
- Create a Visibility Flag in the model
Hi iW1DOV ,
Thank you for reaching out to the Microsoft Fabric Community Forum.
Could you please let us know if the issue has been resolved? I wanted to check if you had the opportunity to review the information provided by tharunkumarRTK . If you still require support, please let us know, we are happy to assist you.
Thank you.
Hi Anonymous
No, the issue has not been solved. As I told before, just adding a measure that filters out values below 0.01 crashes the report. Neither adding a filter to exclude 0 values from the visual makes it happy...
I have just been in a call with customer and we have to find a solution...