I would like to build a Perspective, where all days older than 3 months are removed. In MDX the following would work:
filter([date].[date].[day].members, [date].[date].CurrentMember.properties('KEY',TYPED) <= today()->minusMonths(3))
But in the Perspective the function minusMonth() is apparently not known:
Perspective 'Perspective1 ': operator '>' syntax error (left-operand:'date' (right-operand:'empty')
Is there a different way to achieve this?