I’m trying to create a calculated member for issues that excludes the members of another custom calculated member. The first calculated member (Recurring) that works fine is …
Aggregate(
Filter(
[Issue].Members,
[Issue].CurrentMember.Get('Recurring') = 'Yes'
)
)
Using this I’m trying to create the reverse calculated member as follows. I tried simply reversing the filter but this created too many results and threw an error. The problem is the second calc member doesn’t seem to be excluding the first set. Here’s the second member that’s not working.
Aggregate(
Except(
[Issue].Members,
[Issue].[Recurring]
)
)
I’ve tried a number of variances to no avail. Any assistance would be much appreciated.