Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
Tom_S
Contributor II
Contributor II

What functions can I use to find the average Min time over a date period?

Hello,

In order to monitor our front end Phone Effort, we measure the time when a person made the first and last call of the day. For this I am using the Min and Max function and I am able to get the correct values on a particular day.

What function can I use to find the average time of all the first and last calls made over a period of time, let's say in a week. That is: What is the average time the person makes the first call of the day during the week and what is the average time the person makes the last call of the day during a week?

So I am looking for the average min and the average max when the time period evaluated is greater than 1 day.

Any help is greatly appreciated.  

1 Solution

Accepted Solutions
Vegar
MVP
MVP

Maybe you can solve it using aggr() by date. Like this:

avg(aggr(max(callEnd)-min(callStart),callDate))

View solution in original post

1 Reply
Vegar
MVP
MVP

Maybe you can solve it using aggr() by date. Like this:

avg(aggr(max(callEnd)-min(callStart),callDate))