I an using mondrian and I have this issue: using a query mdx I need to concatenate in each member name belonging to a certain level, its name and a the value of a certain level properties for that member.

Something like CurrentMember.Name = CurrentMember.Name || CurrentMember.Properties("Prop").

Is this possible in some way?

Thanks. Matteo

link|improve this question
feedback

1 Answer

In MDX it should look like that

[Dimension].CurrentMember.Name + [Dimension].CurrentMember.Properties("YourProp")

The concatenation operator in MDX is + not ||

link|improve this answer
Depends on the server! In Mondrian its || – LittleBobbyTables Feb 7 at 18:44
feedback

Your Answer

 
or
required, but never shown

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