i want to use the dimension value as calculated measure
case when [time].[month].current member is
[time].[month].&[januaray] then 'januaray'
when [time].[month].&[feb] then 'feburary'
else 'None' end
i want to display for these 12 months values as measures
You should be able to use either the property
MemberValue
,Member_Value
, orMemberCaption
So just the following:
or
or
You should not need to do this in
mdx
:This is equivalent:
[time].[month].currentMember.member_Caption
. If the reason for thecase
is to expandfeb
tofeburary
then your statement looks ok - I would useNULL
instead of the string None and also you need to get rid of the gap forCurrentMember
: