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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
selimovd
Super User
Super User

Get a dimensional table from SSAS multidimensional with DAX without measure

Hello,

 

I want to load a dimensional table from my SSAS multidimensional cube. I don't want to load a measure, just the dimension.

For the dimension I also need some DIMENSION PROPERTIES, so I have to write my query in MDX.

 

I tried it like this in management studio what works pretty fine:

SELECT 
  { 
  } ON COLUMNS, 
  { 
    ( 
      DESCENDANTS( 
        [Organization].[Organization].[Hierarchie].allmembers 
      ) 
    ) 
  } DIMENSION PROPERTIES member_caption, [Organization].[Organization].[Hierarchie].[REQUID], [Organization].[Organization].[Hierarchie].[ANOTHERID]
   ON ROWS 
FROM [MYSERVER] CELL PROPERTIES value  

 

When I paste the query in Power Query the dimension elements are not going to be loaded. Power Query will just load empty columns. Is it possible to solve my problem in Power Query?

Why isn't it possible to load the table without a measure and how could I solve that?

 

Thank you and best regards

1 ACCEPTED SOLUTION
mwegener
Most Valuable Professional
Most Valuable Professional

Hi,

 

try this.

 

WITH
MEMBER [Measures].[Organization] AS [Organization].[Organization].CURRENTMEMBER.MEMBER_CAPTION 
SELECT 
{ [Measures].[Organization] } 
ON COLUMNS, 
  { 
    ( 
      DESCENDANTS( 
        [Organization].[Organization].[Hierarchie].allmembers 
      ) 
    ) 
  } 
DIMENSION PROPERTIES [Organization].[Organization].[Hierarchie].[REQUID]
                   , [Organization].[Organization].[Hierarchie].[ANOTHERID]
ON ROWS  
FROM [MYSERVER]
CELL PROPERTIES VALUE 
Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


View solution in original post

2 REPLIES 2
mwegener
Most Valuable Professional
Most Valuable Professional

Hi,

 

try this.

 

WITH
MEMBER [Measures].[Organization] AS [Organization].[Organization].CURRENTMEMBER.MEMBER_CAPTION 
SELECT 
{ [Measures].[Organization] } 
ON COLUMNS, 
  { 
    ( 
      DESCENDANTS( 
        [Organization].[Organization].[Hierarchie].allmembers 
      ) 
    ) 
  } 
DIMENSION PROPERTIES [Organization].[Organization].[Hierarchie].[REQUID]
                   , [Organization].[Organization].[Hierarchie].[ANOTHERID]
ON ROWS  
FROM [MYSERVER]
CELL PROPERTIES VALUE 
Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


Thank you, this worked Smiley Happy

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors