Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
bhavvibudagam
Creator II
Creator II

Average Response Time

Hi,

Can any one please help me to calculate the Average Response Time.

The requirement is to calculate the Avg Response Time for animal calls.

For the count of Animal calls i have used this expression i.e


=Count({<CALL_TYPE={'ANIMAL'},PRIMARY_UNIT_NEW={'045*'}>}EID)+Count({<CALL_TYPE={'NOISE'},CALL_SUB_TYPE={'DOGCOMP'},PRIMARY_UNIT_NEW={'045*'}>}EID)

now to calculate the Avg Response Time for animal calls how to calculate.

I have the Response time field also.


Thanks.

1 Reply
sunny_talwar

This?

=(Sum({<CALL_TYPE={'ANIMAL'},PRIMARY_UNIT_NEW={'045*'}>} [Response Time])+Sum({<CALL_TYPE={'NOISE'},CALL_SUB_TYPE={'DOGCOMP'},PRIMARY_UNIT_NEW={'045*'}>} [Response Time]))

/

(Count({<CALL_TYPE={'ANIMAL'},PRIMARY_UNIT_NEW={'045*'}>}EID)+Count({<CALL_TYPE={'NOISE'},CALL_SUB_TYPE={'DOGCOMP'},PRIMARY_UNIT_NEW={'045*'}>}EID))