We have a column of dates in a four digit number format currently (9501). We need this recoded to display something resembeling: Jan,1995 but we can't figure out the function or expression to do so. Any suggestions?? Thanks!! version 7.1
PLEASE HELP!!!
Recommend making and actual date valued variable. Is that value supposed to be YYMM (year and month?) If so do have ANY years with values less than 20 that would indicate 1915 instead of 2015? If so how do you tell the actual year?
data junk;
date= 9501;
SASdate= mdy( mod(date,100),1,int(date/100));
Format sasdate MONYY7.;
run;
proc print; run;
Thank you very much! This worked just as we hoped, perfect!
Please mark the solution as Accepted.
Alternatively there is also an informat which can read such strings.
data sample;
have=9501;
want=input(put(have,4.),yymmn4.);
format want monyy7.;
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.