Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

A Friday Count

Hi All,

It is Friday and almost end of the working day... It seems that my brain stopped working already... Can you please help.

I have the following table

Call IDUser
11589788
21590144
31590500
41589788
51593375
61593731
71594087
81589788
91590144
101590500

I need to count for the Distinct user the number of call made... I can't list all the user as let say there is maybe 100 000 of them. same applies for the ID...

Then I'd like to find out the average per user as-well...

I am pretty sure it is straight forward, but not on a Friday...

Thank you,

Maxime

2 Replies
Clever_Anjos
Employee
Employee

#ofcalls: Count(distinct User)

avgofcallsbyuser:  avg(aggr(Count(Call ID) ,User))

Not applicable
Author

Not if you want something