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 / kiran
data dsn;
input id date;
format date date9.;
cards;
1 13
2 14
3 15
;
run;
Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Are you involved in writing the inferential analysis plan? Tables specfications?
Explain the main difference between the sas procedures and functions? : Sas-administrator
what is business intelligence? : Sas-bi
How to create an external dataset with sas code?
What sas features do you use to check errors and data validation?
List out some key concept of SAS
what are 5 ways to perform a table lookup in sas? : Sas-administrator
what is factor analysis? : Sas-administrator
is data integration and etl programming is same? : Sas-di
What are the differences between sum function and using “+” operator?
what is program data vector? : Sas-administrator
describe how to adjust the performance of data integrator? : Sas-di
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
What are symget and symput? : sas-macro
What Proc glm does?