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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
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.