Hi guys,
I have one measure named "Number available" with calculation like this:
cast (count (distinct case when "XXX"."Customers"."available" > 0 then "XXX"."Customers"."ID" else null end) as double)
and it works correctly,
then I have measure "Number available previous period":
Ago("XXX"."Customers"."Number available" , 1)
And the second one does not work correctly,
In analysis when I use both measures with Time (Month ie), both show exactly the same value.
Do you have any ideas why it happens?
I just want to add that my Time Dimension seems fine since other measures based on Ago function work correctly.