In SAS how to read the variable values having different
formats.
eg:mar99,mar1999 (in a single variable)
Answer Posted / sankar
data ss;
input name$ s anydtdte9.;
cards;
sankar mar99
mahesh mar1999
run;
proc print data=ss;
format s date9.;
run;
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
What is the difference between proportion and average?
what r the job openings SAS for fresher graduates !
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
what are the component of range? : Sas-bi
for whom is sas data integration studio designed? : Sas-di
explain about various caches available in data integrator? : Sas-di
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
How to limit decimal places for variable using proc means?
What is a method to debug and test your SAS program?
how will you location sas platform applications available from web browser? : Sas-bi
what is the Population you used in your project, is it ITT or PP?
How can you limit the variables written to output dataset in data step?
How to include or exclude specific variables in a data set?
How would you define the end of a macro? : sas-macro