Hi All,
I have a column with all strings in a date format such as
28/08/1969
19/04/1977
26/07/1956
26/06/1992
11/04/1984
data outputdata;
set inputdata ;
newvar = input(dob, mmddyy10.);
format newvar mmddyy10.;
run;
When I use the following code only some of the strings get converted to an actual SAS date.
28/08/1969 .
19/04/1977 .
26/07/1956 .
26/06/1992 .
11/04/1984 11/04/1984
Does anyone know why SAS is converting some of them but not others?
newvar = input(dob, mmddyy10.);
Look very very carefully. This is not the right informat to use with your data. Can you figure out why? The proper informat is ... well, after you identify why that informat isn't correct to use on your data, I leave that to you to figure out the correct informat as a homework assignment.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.