Hi All,
I want to create a Calculated Member [New Joiner] while creating a SSRS report in Report Designer for which I was trying to do this...
[New Joiner] =
IIF(
[EMPLOYEE].[GRADE CODE].&[A] or [EMPLOYEE].[GRADE CODE].&,
[Measures].[NEW EMPLOYEE],
Nothing)
This however, doesn't seem to be working and takes a lot of time and never executes.
I however also tried using
Aggregate(
{[EMPLOYEE].[GRADE CODE].&[A], [EMPLOYEE].[GRADE CODE].&},
[Measures].[NEW EMPLOYEE])
But this was giving absurd values :hehe: . Any help in this regard would be very much appreciated.
Athar