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: 
vijaynov
Contributor II
Contributor II

i have data field first two rows sums  make it second field data_new   how to do in back end

 

 

vijaynov_0-1640354760609.png

 

1 Reply
sasikanth
Master
Master

HI, 

try below

load *, Rangesum(data, previous(data)) as data_new;

load Date,

       data

From Table:

 

Thanks,

Sasi