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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.