Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Urgent! How to compare with difference period when each of the period has different number of records

Hi everyone,

Need urgent help on below. Let me explain a bit more about what I want...

 

Customer IDPeriodName
A201801Peter
A201801Paul
A201802Peter
A201802Paul
A201803Mary
A201803Susan
A201804Peter
A201804Paul
A201804Mary
A201804Susan

As shown from the table above:

(1) Compare to Period 201801, Period 201802 has the same records in Name (e.g. Peter and Paul), so there is no change.

(2) Compare to Period 201802, Period 201803 change in Name (e.g. no Peter and Paul / and add Mary and Susan), so I want the table showing 4 records with Period of 201803 (remove Peter and Paul / and add Mary and Susan)

(3) Compare to Period 201803, Period 201804 change in Name (e.g. add Peter and Paul), so I want the table showing 2 records with period of 201804 (add Peter and Paul)

Below is the information that I want to show in the table:   

Customer IDPeriodNameIndicator
A201803MaryAdd
A201803SusanAdd
A201803PeterRemove
A201803PaulRemove
A201804PeterAdd
A201804PaulAdd

Can anyone help on this?

Regards

4 Replies
woshua5550
Creator III
Creator III

Hi Peter

Try like this:

Rawdata:

LOAD *,

CustomerID & Period & Name as %KEY1,

CustomerID & Text(Period - 1) & Name as %KEY2,

CustomerID & Text(Period + 1) & Name as %KEY3

Inline [

CustomerID, Period, Name

A, 201801, Peter

A, 201801, Paul

A, 201802, Peter

A, 201802, Paul

A, 201803, Mary

A, 201803, Susan

A, 201804, Peter

A, 201804, Paul

A, 201804, Mary

A, 201804, Susan

];

TMP:

LOAD Min(Period) as MinPeriod,

Max(Period) as MaxPeriod

Resident Rawdata;

Let vMinPeriod = Peek('MinPeriod',0,'TMP');

Let vMaxPeriod = Peek('MaxPeriod',0,'TMP');

Result:

LOAD CustomerID,

Period,

Name,

'Add' as Indicator

Resident Rawdata

Where NOT Exists (%KEY1,%KEY2) and Period <> $(vMinPeriod)

;

LOAD CustomerID,

Period + 1 as Period,

Name,

'Remove' as Indicator

Resident Rawdata

Where NOT Exists (%KEY1,%KEY3) and Period <> $(vMaxPeriod)

;

DROP Tables Rawdata,TMP;

plz find my test file attached

WeChat Screenshot_20180408150343.png

Anonymous
Not applicable
Author

Hi Dave,

It words only when the 'Period' is consecutively occur, e.g. 201801 > 201802 > 201803.

However, it seems not work when the 'Period' occur like this e.g. 201801 > 201803 > 201808

Regards

woshua5550
Creator III
Creator III

Hi Peter

plz look at this , it will works fine when the period is not consecutively occur

woshua5550
Creator III
Creator III

this is the sample data