Hi, I have one dataset like
id date ex: id date
1 13 1 13Oct2011
2 14 2 14Oct2011
3 15 3 15Oct2011 --->this is the current date
here i want date format like 13Oct2011,14Oct2011 how we can
modify the numeric to date format plz answer.
Answer Posted / ramesh
data inter3;
input id 1-2 dat ;
cards;
1 13
2 14
3 15
;
run;
data inter4;
set inter3;
format dat1 date9.;
dat1=dat;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What versions of SAS have you used (on which platforms)?
How can you create a macro variable with in data step? : sas-macro
Explain how you can debug and test your SAS program?
explain what is factor analysis? : Sas-administrator
how will you location sas platform applications available from web browser? : Sas-bi
What are the new features included in the new version of SAS Programming Language?
what is the use of proc sql? : Sas programming
what is study design in while working with SAS? what are screening variables in SAS?
Describe crosslist option in tables statement?
What is the difference between match merge and one to one merge?
what is hash files in sas and why we are using this one in sas?
What is the sas data set? : sas-grid-administration
what is intially documentation in sas?
How to limit decimal places for the variable using proc means?
what versions of sas have you used (on which platforms)? : Sas programming