Hi all,
I have just started on SAS and have converted a text file and done multiple manipulations with it including changing dates into a relavant format.
I have a question, I want to recode one date point (data point 555) from 21/05/2006 to the 15/05/2006 and every method I use ends up with 1/1/1960. I have converted everything to the ddmmyy10. format.
For example;
data sunscreen;
modify sunscreen;
if studyid=555 then melanomadate = 15/05/2006;
This ends up with 1/1/1960
So I then tried
For example;
data sunscreen;
modify sunscreen;
if studyid=555 then melanomadate = ('15/05/2006', ddmmyy10.);
run;
And got error,
Any thoughts/ideas?
15/05/2006 performs a division. The result is about 0, which is 01/01/1960 as a sas date.
Your 2nd attempt was actually pretty close. You just forgot to also use the SAS INPUT() function to tell SAS what it should be doing with the date string and the informat.
data test;
melanomadate = input('15/05/2006', ddmmyy10.);
format melomadate ddmmyy10.;
run;
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.