Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
qv11user
Contributor
Contributor

Current Month vs Prev Month script help

Hi Team,

Hope everyone is safe and doing good

I have a requirement where i have data like below

OPID,Year,Month,Sales
OP1,2019,12,100
OP1,2020,1,110
OP1,2020,2,120
OP1,2020,3,130
OP1,2020,4,140
OP1,2020,5,150
OP1,2020,6,160
OP1,2020,7,170
OP1,2020,8,180
OP1,2020,9,190
OP1,2020,10,200
OP1,2020,11,210
OP1,2020,12,220
OP1,2021,1,230
OP1,2021,2,240

and i need to bring previous month sales for each month using script.
For ex for 2020/1 previous month is 2019/12

and expected output is:

OPID, Year, Month, Sales, PrevMonthSales
OP1, 2019, 12, 100, -
OP1, 2020, 1, 110, 100
OP1, 2020, 2, 120, 110
OP1, 2020, 3, 130, 120
OP1, 2020, 4, 140, 130
OP1, 2020, 5, 150, 140
OP1, 2020, 6, 160, 150
OP1, 2020, 7, 170, 160
OP1, 2020, 8, 180, 170
OP1, 2020, 9, 190, 180
OP1, 2020, 10, 200, 190
OP1, 2020, 11, 210, 200
OP1, 2020, 12, 220, 210
OP1, 2021, 1, 230, 220
OP1, 2021, 2, 240, 230

Could you please help me here?

Labels (2)
1 Solution

Accepted Solutions
MayilVahanan

HI @qv11user 

Try like

Load *, Previous(Sales) as PrevSales from yoursource;

If you have multiple OPID, then try like below

Load *, If(OPID = Previous(OPID), Previous(Sales)) as PrevSales2 from yoursource;

Hope OPID ,Year & Month are in asc order.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

1 Reply
MayilVahanan

HI @qv11user 

Try like

Load *, Previous(Sales) as PrevSales from yoursource;

If you have multiple OPID, then try like below

Load *, If(OPID = Previous(OPID), Previous(Sales)) as PrevSales2 from yoursource;

Hope OPID ,Year & Month are in asc order.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.