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;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.