I have a character variable with length $7. I want to convert it into a date variable with yyyymm format. However, the values of the character variable is a bit messy. For examples, there are both "2018-09" and "2018-9". I tried to use
data want;
format date_new yymmn6.;
set have;
date_new = input(date_char, yymmn6.);
run;but all of the new date variable values are missing.
data want;
input date_char $;
date_new = input(cats(date_char,'-01'), anydtdte10.);
format date_new yymmn6.;
cards;
2018-09
2018-9
;
data want;
input date_char $;
date_new = input(cats(date_char,'-01'), anydtdte10.);
format date_new yymmn6.;
cards;
2018-09
2018-9
;
Use the gorgeous compress with your original idea like
data have;
input date $;
cards;
2018-09
2018-9
;
data want;
set have;
new_date=input(compress(date,'-'),yymmn6.) ;
format new_date date9.;
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!
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.