Hello:
I found the code didn't work when I tried to convert character to numeric. All of the Date column "Concep" and "Bdate" become missing value ".", please advice how to fix it. Thanks.
data want;
set test (rename=(concep=_concep bdate=_bdate));
concep=input(_concep, MMDDYY10.);
bdate=input(_bdate,MMDDYY10.);
format concep bdate MMDDYY10. ;
drop _concep _bdate;
run;
What is length of your existing variable?
How is it justified?
Are the values in the form mm/dd/yyyy (or mm-dd-yyyy - something that is actually 10 characters ?)
Did you get any messages in the log about "invalid data for function input at line xx? If so show them.
Surely you know by now that we are only psychic on the weekends. We lose our psychic superpowers on Monday.
If you were to give us some examples of what your incoming variables contain, many of us could give you a valid answer.
Example data.
Example data.
Example data.
Did I say "example data" already?
Oh, and before I forget: example data!
After close to 400 posts here, that should be a total given. Really.
What is length of your existing variable?
How is it justified?
Are the values in the form mm/dd/yyyy (or mm-dd-yyyy - something that is actually 10 characters ?)
Did you get any messages in the log about "invalid data for function input at line xx? If so show them.
Thanks for all of suggestion, I realized I put the wrong format.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.