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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
xarapre7
Creator II
Creator II

Avg of Calls and Print text objects

I would like to do an average of the below but, I'm not getting the correct result. 

=Num(Avg({$<EMPLOYEE=,TEAM=p()>} CALLS_ANSWERED),'#,##0')

DescriptionIndividualTeam
Calls Answered     2,000  Avg of the Team
Average Handle Time     22:37         25:11

Also, i have a couple of text objects to get different call metrics.  I would like the capability to have these

text objects printed altogether in a sheet (as seen in the above table).  How should i do this?  Can you please help?  Thank you in advance for your assistance.

77 Replies
xarapre7
Creator II
Creator II
Author

Did you get the file I sent earlier?  Here it is again.  We are trying to resolve the Team's Avg.

sunny_talwar

Checking

xarapre7
Creator II
Creator II
Author

Any luck with it?  🙂

sunny_talwar

Where is this chart in your application? If it is not there can you tell me what all were your dimensions and expressions when you created this?

Capture.PNG

xarapre7
Creator II
Creator II
Author

This is the result of a SQL query by our tester.  The one in the excel file I sent earlier.

This is what we're trying to replicate for the TEAM's Avg.

xarapre7
Creator II
Creator II
Author

Dimensions are: FULL_DATE, EMPLOYEE_NAME, and WM_TEAM

sunny_talwar

I will look at this when I am home

xarapre7
Creator II
Creator II
Author

I appreciate it!  Thank you so much!

xarapre7
Creator II
Creator II
Author

Hi Sunny T!

Just for reference in the future, I was able to get the expected result by the following expression:

=sum(all Aggr((Sum( {$<WM_TEAM = p(WM_TEAM),EMPLOYEE_NAME=>} total<DAY_MASTER.FULL_DATECALLS.CALLS_ANSWERED)/
Count({$<WM_TEAM = p(WM_TEAM),EMPLOYEE_NAME=>}  Total<DAY_MASTER.FULL_DATE> EMPLOYEE_NAME)),DAY_MASTER.FULL_DATE)) 

This was able to give the sum of the Averages.  The only function that we were lacking was the 'ALL'.

Thanks for your kind help!