Hello,
I have a character variable (DateVar) which I want to convert to date.
data have;
DateVar='November 2014';
run;
The output dataset should also show the value of DateVar as November 2014 but as a date variable.
Any suggestions?
Thanks.
I'd split the string with SCAN and then use the FINDW function to determine the month out of a reference string.
I doubt that a single format could be made that handles the display in one step. You may have to create a separate character variable for display (or keep the original column).
If you need the display to look like this I would keep this column as your display, you can use substr() to cut up the format and then go with the MONYY. format for any calculations that need done.
data have;
DateVar='November 2014';
run;
data prep;
set have;
month = substr(datevar,1,3);
year = scan(datevar,2,' ');
run;
data want;
format new_date monyy7.;
set prep;
new_date = input(put(trim(month)||trim(year),$char7.),monyy7.);
run;
Thank you, all.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.