Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
upaliwije
Creator II
Creator II

DATA MATCH

Hi Friends

I have attached my QV document where I have Policy Data and Claim Data. I want match to these data and create a single table with following conditoins

1.How many claims(Count of Claim_no) and what is the paid amount for such claims against each Policy No

2. Date of Loss should between policy period of particular policy

3.Paid date should also be included.

Pls help me to write the script

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Try this:

CLM_Data:

LOAD POLICY_NO,

     PERIOD_FROM as PERIOD_FROM_CLM,

     PERIOD_TO as PERIOD_TO_CLM,

     CLAIM_NO,

     PAID_AMOUNT,

     LOSS_DATE,

     PAID_DATE

FROM

comm206360_CLM_DATA.xls

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

IntervalMatch:

INTERVALMATCH(LOSS_DATE,POLICY_NO)

LOAD

     PERIOD_FROM,

     PERIOD_TO,

     POLICY_NO

FROM

comm206360_PRE_DATA.xls

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


talk is cheap, supply exceeds demand

View solution in original post

7 Replies
Not applicable

Untitled.png

this way you looking for

upaliwije
Creator II
Creator II
Author

Can someone pls help me to build the script as per my requirement

Gysbert_Wassenaar

Try this:

CLM_Data:

LOAD POLICY_NO,

     PERIOD_FROM as PERIOD_FROM_CLM,

     PERIOD_TO as PERIOD_TO_CLM,

     CLAIM_NO,

     PAID_AMOUNT,

     LOSS_DATE,

     PAID_DATE

FROM

comm206360_CLM_DATA.xls

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

IntervalMatch:

INTERVALMATCH(LOSS_DATE,POLICY_NO)

LOAD

     PERIOD_FROM,

     PERIOD_TO,

     POLICY_NO

FROM

comm206360_PRE_DATA.xls

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


talk is cheap, supply exceeds demand
upaliwije
Creator II
Creator II
Author

Pls upload the sample file for me to see it

upaliwije
Creator II
Creator II
Author

Thanks

But here a synthetic table is created how Can I avoid IT. IF you can pls attach the modified file

Gysbert_Wassenaar

That synthetic key is supposed to be there. There's no need to remove it.


talk is cheap, supply exceeds demand
sunny_talwar

Synthetic key in this case isn't a bad thing. Read the second last paragraph from HIC's blog post: IntervalMatch