Hi, i'm trying to calculate a percentage of a column total. I've found the following MDX syntax which works on MSAS but it does not work on mondrian.
I do not understand the error message i get when trying the same with mondrian. Should the syntax below work with Mondrian? Could it be that the AXIS function is not supported by Mondrian? Is there an alternative to accomplish the same with Mondrian?
WITH MEMBER [Measures].[Percent] AS '
[Measures].[Unit]/ (Axis(1).Item(0).Item(0).Dimension.CurrentMember.Parent,[Measures].[Unit]) ', FORMAT ='percent'