Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a table with (among others) the fields Date, Product, Stock.
I also have a Master Calendar table with Date, YearWeek, YearMonth, and so on.
I need a chart that shows:
How do I make the Master Measure for this? Many thanks in advance!
I've been messing around with aggr but can't seem to get it right...
Hi, maybe with: Count(Distinct Aggr(If(Avg(Stock)<>0, Product), YearWeek,Product))/Count(distinct Product)
Hi, maybe with: Count(Distinct Aggr(If(Avg(Stock)<>0, Product), YearWeek,Product))/Count(distinct Product)
Yes, great! Thank you!