ESSBASE MDX Average Consolidation
ESSBASE MDX Average Consolidation:
The issue with this is that I cannot get the GEO Account Unit parents to average the revenue days. It has to over ride the addition, consolidation in the dimension GEO Account Unit. Is there a way to do this? If you have an MDX example (not SQL example), I would really appreciate it much.
CASE WHEN
IsLevel([GEO Account Unit].CurrentMember, 0)
THEN
[Accounts].[Revenue Days]
ELSE
AVG([GEO Account Unit].CurrentMember.Children, [Accounts].[Revenue Days])
END
Thank you for your help.
TC