Hello,
I would like to calculate the subtraction of n and n-1
data table;
input n;
cards;
15
24
8
9
2
;
run;
and get in a table
N S
15 .
24 9
8 -16
9 1
2 -7
Thanks for your help
data table;
input n;
cards;
15
24
8
9
2
;
run;
data want;
set table;
if _n_ ne 1 then s=n - lag(n);
run;
Just add:
s = n - lag(n);
//Fredrik
data table; input n; cards; 15 24 8 9 2 ; run; data want; set table; s=dif(n); run;
data want;
set table;
want=n-lag(n);
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.