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
Anonymous
Not applicable

Power Query

Hello, I am accesing data from our analyses services cube. Is there a more logic way how to filter first and download data - because in my order it is first accesing all data and then filtering.

 

let
Source = AnalysisServices.Databases("****", [TypedMeasureColumns=true, Implementation="2.0"]),
CLIFFORD_SSAS = Source{[Name="CLIFFORD_SSAS"]}[Data],
CLIFFORD_WWRUM1 = CLIFFORD_SSAS{[Id="CLIFFORD_WWRUM"]}[Data],
CLIFFORD_WWRUM2 = CLIFFORD_WWRUM1{[Id="CLIFFORD_WWRUM"]}[Data],
#"Added Items" = Cube.Transform(CLIFFORD_WWRUM2,
{
{Cube.AddAndExpandDimensionColumn, "[INTRNL PROD]", {"[INTRNL PROD].[PROD HIER].[PROD GRP DESC]"}, {"INTRNL PROD.PROD GRP DESC"}}

}),
#"Filtered Rows" = Table.SelectRows(#"Added Items", each (Cube.AttributeMemberId([INTRNL PROD.PROD GRP DESC]) = "[INTRNL PROD].[PROD HIER].[PROD GRP DESC].&[3CM]" meta [DisplayName = "COMMERCIAL"]))
in
#"Added Items"

0 REPLIES 0

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 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.

Top Solution Authors