Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
Im trying to chart the avg number of cases per month, my data is based on days, when I use the parameters below I get an avg for the month but per day and not for the entire month.
=[dateReceived.autoCalendar.Month]
=avg(RFAReceivedAMS)
Thank you.
Hi,
Maybe you're looking for calculate average of daily average. So, try with :
=avg(aggr(avg(FRAReceivedAMS),dateReceived))
It still provides the average per day for each month example Jan returns 4,000, should be around 90K.
Thank you.
Can you send sample and exopected output?