Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Congratulations to the new Qlik Luminary and Partner Ambassador class! Meet them here
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.

Labels (1)
1 Reply
sunny_talwar
MVP
MVP

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))