Forum Discussion
timwilson
9 years agoFrequent Visitor
Counting concurrent calls
Hi, I need to count the number of concurrent calls. I have a start datetime of each call and an end datetime of each call, anyone have any ideas on counting the amount of concurrent calls? ...
- Anonymous9 years ago
Hi timwilson,
Maybe you can try to use "countrows" function with calculate column to get the count of concurrent call.
Sample:
Concurrent Calls= COUNTROWS(FILTER('Table',[StartDate]>=EARLIER('Table'[StartDate])&&[EndDate]<=EARLIER('Table'[EndDate])))Regards,
Xiaoxin Sheng
Anonymous
9 years agoNot applicable
Hi timwilson,
Maybe you can try to use "countrows" function with calculate column to get the count of concurrent call.
Sample:
Concurrent Calls= COUNTROWS(FILTER('Table',[StartDate]>=EARLIER('Table'[StartDate])&&[EndDate]<=EARLIER('Table'[EndDate])))
Regards,
Xiaoxin Sheng
jpurcell
8 years agoAdvocate I
is it possible to further filter this by user? to count the concurent events of each user, not of everyone.