Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
how can i write expression for getting Average days for distinct Customer ID's.
=AVG({$<DISTINCT [Customer ID]>}[Days])
can some one help me please.
Best Regards,
HK
May be this
Sum(Aggr(Avg(Days), [Customer ID]))
or this
Avg(Aggr(Avg(Days), [Customer ID]))
May be this
Sum(Aggr(Avg(Days), [Customer ID]))
or this
Avg(Aggr(Avg(Days), [Customer ID]))
Hi Sunny,
Thanks a lot , you are always Right 🙂
Second Condition works for my need.
Best Regards,
Hk