Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
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))