PROC SQL;
SELECT DATE FORMAT MMYYS. FROM TABLE NAME;
QUIT;
This is pretty old, so I dare say not relevant anymore, but this is how I might have done it:
data _null_;
date = 'JAN2010';
format date2 mmyyd7.;
date2 = input(date, monyy7.);
call symput('date', date);
call symput('date2', date2);
run;
%put date=&date. date2=%sysfunc(putn(&date2., mmyyd7.) );
Which outputs:
20 data _null_;
21 date = 'JAN2010';
22 format date2 mmyyd7.;
23 date2 = input(date, monyy7.);
24
25 call symput('date', date);
26 call symput('date2', date2);
27 run;
NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).
26:25
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
28 %put date=&date. date2=%sysfunc(putn(&date2., mmyyd7.) );
date=JAN2010 date2=01-2010
if you have a CHARACTER variable:
data have;
input date $;
cards;
jan2012
feb2012
;
proc sql;
create table want as select input(date,MonYY7.)
as date format mmyyd7.
from have;
quit;
proc print;run;
Obs date
1 01-2012
2 02-2012
Linlin
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.