Hi Everyone,
I have a column with date and I want to create a new column for the same date in the next 3 month.
So '5MAY2022'd will have '5AUG2022'd and '5NOV2022' will have '5FEB2023'd.
Can you please help?
Thank you,
HHC
data have;
format my_date date9.;
input my_date date9.;
datalines;
05MAY2022
05NOV2022
;
run;
data want;
set have;
newdate=intnx('month',my_date,3,'s');
format newdate date9.;
run;
data want;
set have;
newdate=intnx('month',my_date,3,'s');
format newdate date9.;
run;
Thank you,
It works perfectly.
HHC
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 save with the early bird rate—just $795!
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.