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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

adding new column from SSAS model

Hello all,

I have a Power BI report which is getting data from one SSAS module. SSAS module is connected via 'Import' option.

Now I need to create new visuals that require new columns to be added to this SSAS model. After adding the required columns from this model, when I apply changes, it fetches all the rows and it is taking a lot of time. (There are quite many rows). Getting error as increase memory of the server where SSAS is deployed.

Is there any option to limit these rows or  any way to add required columns, make  visuals, Publish and then refresh the report after deploying.

Please guide.

1 ACCEPTED SOLUTION
smearp
Microsoft Employee
Microsoft Employee

This is because the SSAS data import feature can generate inefficient MDX when importing. A workaround is to write your own custom query, preferably using DAX.

 

Once you do this, I promise you'll never go back 🙂

 

Here's an example query you can tweak:

DEFINE
    VAR vFilter1 =
        FILTER ( ALL ( DimProduct[Color] ), [Color] IN { "Red""Blue" } )
    VAR vFilter2 =
        FILTER (
            ALL ( DimGeography[CountryRegionName] ),
            [CountryRegionName] = "United States"
        )
EVALUATE
SUMMARIZECOLUMNS (
    DimProduct[Color],
    DimProduct[Size],
    DimDate[CalendarYear],
    vFilter1,
    vFilter2,
    "Total Sales"SUM ( FactInternetSales[Sales Amount] ),
    "Distinct Customers"DISTINCTCOUNT ( FactInternetSales[CustomerKey] )
)

View solution in original post

2 REPLIES 2
smearp
Microsoft Employee
Microsoft Employee

This is because the SSAS data import feature can generate inefficient MDX when importing. A workaround is to write your own custom query, preferably using DAX.

 

Once you do this, I promise you'll never go back 🙂

 

Here's an example query you can tweak:

DEFINE
    VAR vFilter1 =
        FILTER ( ALL ( DimProduct[Color] ), [Color] IN { "Red""Blue" } )
    VAR vFilter2 =
        FILTER (
            ALL ( DimGeography[CountryRegionName] ),
            [CountryRegionName] = "United States"
        )
EVALUATE
SUMMARIZECOLUMNS (
    DimProduct[Color],
    DimProduct[Size],
    DimDate[CalendarYear],
    vFilter1,
    vFilter2,
    "Total Sales"SUM ( FactInternetSales[Sales Amount] ),
    "Distinct Customers"DISTINCTCOUNT ( FactInternetSales[CustomerKey] )
)

Greg_Deckler
Community Champion
Community Champion

So, yes, you can filter the rows coming from the SSAS source in the Power Query editor.


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.