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: 
Not applicable

issue with Calculated measure

Hi ,

I have one calculated measure (Avg TAT) for that we are using below definition , and the final result will be in Hours ,

(((Sum(TOT_INTR_MIN*60)+sum(PPS_anr_tat_hrs__c*3600))/count(distinct(if(UPPER(Status)='CLOSED' or 'COMPLETED',Case_Number,1))))/3600)

TOT_INTR_MIN--> values are there in Minutes(so converted into Sec.)

PPS_anr_tat_hrs__c--> values are there in Hours (so converted into Sec.)

while using that definition not getting exact value(please look at below highlighted values in the table)

VAEC88.38
KOREA43.57
SWEDEN8,125.59
DENMARK7,722.90
ISAREL7,205.16
BELGIUM6,730.11
FINLAND6,404.13
SPAIN6,397.94
FRANCE6,038.79
SWITZERLAND5,916.24

Can any one please help me here ?

Thanks & regards,

Sh

2 Replies
hic
Former Employee
Former Employee

You use the following condition, which isn't OK:

     UPPER(Status)='CLOSED' or 'COMPLETED'


Change this to

     Match(UPPER(Status),'CLOSED','COMPLETED')


HIC

Not applicable
Author

Hi Henric,

Thanks for the reply , I tried that what you suggested but now also facing like same issue

DENMARK231.14
SWEDEN196.69----->197.09
IRELAND189.93------>190.33
NORWAY183.98------>184.38

Is there any other way to get the exact result 196.69----->197.09(expected result) ?

Thanks & Regards,

Sh