I am new to MDX and wondered if it is possible to create a query that shows a Sales amount per Year and per Month on two different axes, even if the sales date is a single dimension.

Something like:

Sales    |   2010    |    2011    |   Diff   
---------+-----------+------------+----------
Jan      |  1234,00  |  2345,10   |  +80%
Feb      |    ...
...

EDIT: Added mondrian to tags, because there seem to be possibilities with other MDX implementations not available in mondrian.

link|improve this question

78% accept rate
feedback

2 Answers

Yes the solution is around calculated members :

Let's imagine your initial MDX looks like :

Select
 { [Calendar].[Year].[2010],[Calendar].[Year].[2011] } on 0,
 { [Calendar].[Months].members } on 1
from [Cube]

You can add a calculated member in the [Year] hierarchy :

With
 Member [Calendar].[Year].[Diff] as [Calendar].[Year].[2011] / [Calendar].[Year].[2010]-1, FORMAT_STRING='percent'
Select
 { [Calendar].[Year].[2010],[Calendar].[Year].[2011], [Calendar].[Year].[Diff] } on 0,
 { [Calendar].[Months].members } on 1
from [Cube]

You can also add a more elegant and flexible solution, by using utility or statistical dimensions. Those dimension instead of holding data define transformations / functions and the output will not be exactly the one you're looking, but it's an interesting concept.

link|improve this answer
Sadly I get: Mondrian Error:Hierarchy '[date]' appears in more than one independent axis. Thanks anyway, I didn't know some implementations are more pickier than others here. – Daniel Jul 26 '11 at 16:40
I guess [Calendar].[Months] is not a hierarchy but a level, that's why you might get this error (no Mondrian specific). MDX is sometimes too smart: You can try [Einheiten Vorjahr] without [Measures] it works (not sure for Mondrian). It's an issue in MDX without knowing the model you can't be sure of what it is (dimension, hierarchy, level, member). Alles besten mit deine erste Shritte in MDX – icCube Jul 26 '11 at 18:24
for info, [Calendar].[Months] if it's not a hierarchy the parser will try a level, if not a level it will try to find a member.. – icCube Jul 26 '11 at 18:27
feedback
up vote 0 down vote accepted

The problem can be solved with the ParallelPeriod function:

WITH MEMBER [Measures].[Einheiten Vorjahr] 
  AS '(ParallelPeriod([Year],1),
      [Measures].[quantity])'
SELECT {[Measures].[quantity],[Measures].[Einheiten Vorjahr]} ON COLUMNS,
       [date].[2010].children on rows
FROM salesorderitems
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.