Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to find average of all the month for each person
Hi. You can reach it by some ways.
First is divide for amount of monthes like (your expression)/count(distinct [Month] & [Year])
Second is using AGGR function like avg(aggr(your expression, [person], [Month], [Year]))
[Year] field is optional in case of many years of data.
Hi. You can reach it by some ways.
First is divide for amount of monthes like (your expression)/count(distinct [Month] & [Year])
Second is using AGGR function like avg(aggr(your expression, [person], [Month], [Year]))
[Year] field is optional in case of many years of data.