Hello Friends
I have issue in executing this program. Can you please guide me on this? Is there problem with this code?
Your help is highly appreciated.
data dates;
input @1 subject @4 date_of_birth mmddyy8. @12 visit_date date9.;@12 visit_date date9.;
datalines;
0011021195011Nov2006
0020802196212Dec2010
0030125195502Jan2011
;
run;
proc print;
format date_of_birth date9.
visit_date mmddyy10.;
run;
Thanks. It is working.
data dates; input subject $3. date_of_birth mmddyy8. visit_date date9.; format visit_date date9. date_of_birth mmddyy10.; datalines; 0011021195011Nov2006 0020802196212Dec2010 0030125195502Jan2011 ; run; proc print;run;
Thanks. It is working.
@sas_td2016 When marking a correct answer please mark the answer that helped you, NOT your own response.
The source of the problem is (as was indicated) reading in SUBJECT. Your program tells SAS to start at column 1, but doesn't tell it where to finish. As a result, SAS keeps reading until it either hits a blank or hits the end of the line,.
thanks for your input. So here we need not to use column input, right?
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 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.