Hi, how can I exclude a date that is one before last from the table
Table
2020-01-15
2020-04-23
2020-05-13
2020-06-26
Result
2020-05-13
can I do this in an easy and fast way?
data have;
input date yymmdd10.;
format date yymmdd10.;
cards;
2020-01-15
2020-04-23
2020-05-13
2020-06-26
;
data want;
_n_=nobs-1;
set have nobs=nobs point=_n_;
output;
stop;
run;
data have;
input date yymmdd10.;
format date yymmdd10.;
cards;
2020-01-15
2020-04-23
2020-05-13
2020-06-26
;
data want;
_n_=nobs-1;
set have nobs=nobs point=_n_;
output;
stop;
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.