Hi,
Can someone please advise how to build MDX code to sum up a custom number field called ROM that are not done/completed from the previous month and another for the current month. I can’t use [Measures].[ROM created] because it’d only specify what was created in a given month vs. the entire universe of ROM currently outstanding. I tried with this code:
Sum(
Filter(
DescendantsSet([Issue].CurrentHierarchyMember, [Issue].[Issue]),
NOT (
[Measures].[Issue status] MATCHES ‘Done|Canceled|Deferred’
)
),
(
[ROM],
[Time].[Previous month]
)
)
Any help is appreciated, thanks