Skip to main content
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.

1 Solution

Accepted Solutions
sunny_talwar

I am talking about this number my friend

Capture.PNG

It is the Avg of the sum of calls answered by each of the employees in the whole team.

View solution in original post

77 Replies
vishsaggi
Champion III
Champion III

Can you share a sample app to look into ?

sunny_talwar

How is your raw data look like? what is your expected output?

xarapre7
Creator II
Creator II
Author

Hi!  Sorry for the delayed response but, what you see above is the expected output.  I have metrics description on the left hand side of the table, then the output per individual based on what's selected from the filter and then the Team output which is the Avg. 

sunny_talwar

Raw data?

xarapre7
Creator II
Creator II
Author

  Load  *  inline [

EMPLOYEE, Mgr, COUNTRY, TEAM, CALLS_ANSWERED
Samat, Fad, KL, SUPP SPEC, 7
Abas, Zach, KL, SUPP SPEC, 15
Abas, Zach, KL, SUPP SPEC, 3
Abas, Zach, KL, SUPP SPEC, 4
Abas, Zach, KL, SUPP SPEC, 6
Abas, Zach, KL, SUPP SPEC, 1
Abas, Zach, KL, SUPP SPEC, 2
Abas, Zach, KL, SUPP SPEC, 3
Abas, Zach, KL, SUPP SPEC, 4
Abas, Zach, KL, SUPP SPEC, 5
Abas, Zach, KL, SUPP SPEC, 6
Abas, Zach, KL, SUPP SPEC, 7
Abas, Zach, KL, SUPP SPEC, 9
Abas, Zach, KL, SUPP SPEC, 10
Abas, Zach, KL, SUPP SPEC, 17
Abas, Zach, KL, SUPP SPEC, 5
Abdel, Remi, KL, SUPP SPEC, 0
Abdel, Remi, KL, SUPP SPEC, 1
Abdel, Remi, KL, SUPP SPEC, 2
Abdel, Remi, KL, SUPP SPEC, 3
Abdel, Remi, KL, SUPP SPEC, 4
Abdel, Remi, KL, SUPP SPEC, 6

]

xarapre7
Creator II
Creator II
Author

Output should be like below:

 

SUM PER INDIVIDUAL
Row LabelsSum of CALLS_ANSWERED
Abas, 97
Abdel, 16
Samat, 7
Grand Total120
AVG OF TEAM
Row LabelsAverage of CALLS_ANSWERED
SUPP SPEC,5
Grand Total5
vishsaggi
Champion III
Champion III

Is this you are looking for ?

Capture.PNG

Pivot table used

Dim: Team

        Employee

Expr1: Sum(CALLS_ANSWERED)

Expr2: Avg(TOTAL CALLS_ANSWERED)

xarapre7
Creator II
Creator II
Author

Yes, the output you've given is what I'm expecting.  However, how will I apply it to my expression below?  I added the Total after the AVG and it's not giving the right output.

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

vishsaggi
Champion III
Champion III

What is your output you are expecting for this expression ?