Click here to Skip to main content
15,893,190 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to Show Row Header Name in MDX Quaries

What I have tried:

SELECT NON EMPTY { [Measures].[Revenue] } ON Columns ,
[Service].[ServiceGroup].[ServiceGroup].members ON Rows
FROM [CCAnalyticsCube]
WHERE ( [DimDate].[Year].[All], [DimDate].[Month].[All], [DimDate].[WeekOfYear].[All] )
Posted
Updated 19-Sep-16 5:23am

1 solution

Start here: SELECT Statement (MDX)[^]
As MSDN documentation states, you have to add a member to be able to produce "row-header".

For further details, please check this thread: No row headers for MDX query...[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900