I am very new to SSAS and its corresponding language MDX. So this is probably a newbie question.
I have a cube with a fact table, games, and 2 dimensions attached, players and events, repectively. Each dimension has a date.
What I want to do is create a calculated member to count the number of new players for each event, and exclude the ones that already played in previous events.
A logic representation of the code would be this:
DistinctCount(
IIF(
[Customer].[Date registered as player] > [Sponsored events].[Start date]
,1
,0
)
)
But this does not work in MDX.