Hi. I currently have a dataset that contains date9. columns.
I want to convert it to yymmn6. in character. Is it do-able?
data date;
input dates 8.;
datalines;
01/02/2012
run;
i want it to be:
201202 in character.
data test;
date="05dec2018"d;
format date date9.;
charDate=put(date, yymmn6.);
run;
data test;
date="05dec2018"d;
format date date9.;
charDate=put(date, yymmn6.);
run;
data have;
input dates :ddmmyy10.;
yymmn=put(dates,yymmn6.);
datalines;
01/02/2012
run;
Your data step creates missing values. Please test example data code before posting it here.
I guess you meant to do
data date;
input dates ddmmyy10.;
format dates date9.;
datalines;
01/02/2012
;
run;
From there you can apply the other's suggestion.
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!
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.