Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
Please assist.
I am looking for an expression that will help me calculate the average TAT for only the unique Doc No.
Please view sample data
Thanks
Simply try:
Doc No as a Dim
Expression: avg(TAT)
may be this as well?
=aggr(avg(TAT), DocNo) as Expression
Hi
hope it helps :
Hi
I need a solution to the below data that will show one Average in a Text box.
It must only do a calculation for the unique Doc No.
HI Charles,
Try this:
Sum(aggr(avg(TaT),Docno))
Did you try what I suggested you??