Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Average TAT for unique Doc no

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

6 Replies
Anonymous
Not applicable
Author

Simply try:

Doc No as a Dim

Expression:  avg(TAT)

Anonymous
Not applicable
Author

may be this as well?

=aggr(avg(TAT), DocNo)  as Expression

brunobertels
Master
Master

Hi

hope it helps :

Not applicable
Author

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.

Sample data.JPG

reddy-s
Master II
Master II

HI Charles,

Try this:

Sum(aggr(avg(TaT),Docno))

Anonymous
Not applicable
Author

Did you try what I suggested you??