Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
upaliwije
Creator II
Creator II

Insurance Claims

Hi Friends

I want to analyse and compare the Insurance Claims Paid data with Insurance Premium. In this I want to find out amount of claim paid during a policy period against the premium. In other words I have Premium data with corresponding  Insurance Policy Periods. I want to know how to link insurance claim date which falls between policy period. Pls help to write the data load script.

11 Replies
upaliwije
Creator II
Creator II
Author

In fact my output report should like given below

Policy_NoFrom_dateTo_datePremiumclaim Noloss datecalims
11-Jan-1431-Dec-142000C11-Jun-141000
C21-Nov-14500
11-Jan-1531-Dec-152000C61-Jun-15200
21-Jan-1431-Dec-145000C31-Jul-14100
21-Jan-1531-Dec-155000C71-Jan-15500
C81-Sep-15700
21-Jan-1631-Dec-165000C101-Mar-16800
C125-Mar-16300
sasikanth
Master
Master

Try below script then , also attached application PFA

premium:

LOAD Policy_No, 

     From_date,

     To_date,

     Premium

FROM

premium.xls

(biff, embedded labels, table is Sheet2$);

Left Join

CLAIMS:

LOAD Policy_No,

     claim_No,

     LOSS_DATE,

     CLAIMS

FROM

CLAIMS.xlsx

(ooxml, embedded labels, table is Sheet1);

Final:

LOAD * Where Flag='Y';

LOAD *,

IF(LOSS_DATE>From_date and LOSS_DATE<To_date,'Y','N') as Flag Resident premium ;

DROP Table premium;