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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
JillHenninger
Helper I
Helper I

DAX Exceeds Available Resources

Hi all

The DAX formula below causes the "Visual Has Exceeded Available Resources" error for my Matrix. It will run when filtered, but not unfiltered (and I need it to be unfiltered). There are 3376 entries with 6 Rows (image below). Seems simple enough but - no luck!

 

Any ideas? Thank you!

 

Time for Extract 2 =
IF (
    CALCULATE (
        SUM ( AnalyticsRequestForm[January] ),
        AnalyticsRequestForm[Project Year] = "2021"
    ) = 0,
    DIVIDE (
        CALCULATE (
            SUM ( AnalyticsRequestForm[October] ),
            AnalyticsRequestForm[Project Year] = "2020"
        )
            + CALCULATE (
                SUM ( AnalyticsRequestForm[November] ),
                AnalyticsRequestForm[Project Year] = "2020"
            )
            + CALCULATE (
                SUM ( AnalyticsRequestForm[December] ),
                AnalyticsRequestForm[Project Year] = "2020"
            )
            + CALCULATE (
                SUM ( AnalyticsRequestForm[January] ),
                AnalyticsRequestForm[Project Year] = "2021"
            ),
        4
    ),
    CALCULATE (
        SUM ( AnalyticsRequestForm[January] ),
        AnalyticsRequestForm[Project Year] = "2021"
    )
)

 Layout

image.png

1 REPLY 1
amitchandak
Super User
Super User

@JillHenninger , refer if this blog can help

https://blog.crossjoin.co.uk/2020/01/20/visual-has-exceeded-the-available-resources-error-power-bi/

 

Can you a sample pbix after removing sensitive data.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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