I imported 5 excel files into SAS and there are some dates formatted as 8/3/1989 originally and formatted into 03Aug1989 (DATE9.) which is what I really want. However, on 1 file the dates failed to converted into DATE9. and it is read as $CHAR10 when I read the log. I tried several ways to reformat it into DATE9 but failed.
Any comment?
Thanks!
Your second method should be correct.
One thought is trailing spaces so perhaps a compress or trim might help?
DateNew=input (compress(Date),DATE9.);
HOW did you get the data from Excel? Proc Import has a number of issues with Excel depending on what people put in the Excel file.
Also, look at the cell level formats in Excel. If they were set as character and the value entered as text '8/3/1989 they would likely come in as text.
If the values are 8/3/1989 then you want to use
DateNew = input(date, mmddyy10.);
and
Format DateNew date9.;
when use input(date,date9.) SAS expects the text value to look like 03Aug1989 not 8/3/1989.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.