![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
| WITH |
#3
| |||
| |||
|
|
If you wish to sort by [ParameterCaption] ascending: WITH MEMBER [Measures].[ParameterCaption] AS '[Lieferant].[Name].CURRENTMEMBER.MEMBER_CAPTION' MEMBER [Measures].[ParameterValue] AS '[Lieferant].[Lieferant].CURRENTMEMBER.UNIQUENAME' MEMBER [Measures].[ParameterLevel] AS '[Lieferant].[Lieferant].CURRENTMEMBER.LEVEL.ORDINAL' SELECT {[Measures].[ParameterCaption], [Measures].[ParameterValue], [Measures].[ParameterLevel]} ON COLUMNS , Order([Lieferant].[Lieferant].ALLMEMBERS, [Measures].[ParameterCaption], BASC) ON ROWS FROM [Test] - Deepak Deepak Puri Microsoft MVP - SQL Server *** Sent via Developersdex http://www.developersdex.com *** |
#4
| |||
| |||
|
| Expressions (MDX) |
#5
| |||
| |||
|
|
Hi Marc, A measure can be considered a valid MDX expression: http://msdn2.microsoft.com/en-us/library/ms145971.aspx Expressions (MDX) An expression is a combination of identifiers, values, and operators that Microsoft SQL Server 2005 Analysis Services (SSAS) can evaluate to get a result. ... Object identifier MDX is object-oriented because of the nature of multidimensional data. Object identifiers are considered simple expressions in MDX. ... - Deepak Deepak Puri Microsoft MVP - SQL Server *** Sent via Developersdex http://www.developersdex.com *** |
![]() |
| Thread Tools | |
| Display Modes | |
| |