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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
abhiram342
Microsoft Employee
Microsoft Employee

Suggestions to Optimize DAX RollUp and SubTotal query

Hi Team,

We want to get the rollup and subtotals across different dimensions .Can you please tell if there is way to optimize it? 

 

EVALUATE
var t1 = CALCULATETABLE(
    SUMMARIZE(
        'Fact Sales',
        ROLLUP (
                'Customer'[Name],
                'Customer'[Geography],
                'Customer'[Region],
                'Customer'[Industry],
                'Store'[Subsidiary]),
        "Name total",           ISSUBTOTAL ('Customer'[Name]),
        "Geography total",       ISSUBTOTAL ('Customer'[Geography]),
        "Region total",          ISSUBTOTAL ('Customer'[Region]),
        "Industry total",        ISSUBTOTAL ('Customer'[Industry]),
        "Subsidiary total",      ISSUBTOTAL ('Store'[Subsidiary]),
        "Metric Name", NAMEOF('Fact Sales'[Sales]),
        "Metric Value", [Sales]),
        TREATAS ({ "FY22" }, 'Date'[Fiscal Year])
    )
RETURN t1

 

Thanks,

Abhiram

1 REPLY 1
Anonymous
Not applicable

HI @abhiram342,

In my opinion. I'd like to suggest you create a summary table with all category and value fields without rollup.
Then you can use this table to create a matrix visual and use the category fields on row and column, value field to matrix value and these values will auto aggregated on subtotal levels.

Regards.

Xiaoxin Sheng

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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