I would like to calculate customers, who have been active the first time ever in the current period. Let's say the calculation for active customer is the following
MEMBER [Measures].[ActiveCustomers] AS Sum( [Customer].[Customer Id].Members, IIF([Measures].[Revenue] > 0,1,NULL))
How, or what functions do I need to use to determine the customers whom have generated revenue the first time ever, in the current period?
CurrentMember
of this hierarchy? – FrankPl