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
Compare sas with other data analytics tools.
what does the run statement do? : Sas programming
Explain the special input delimiters used in sas programming.
What is SAS? What are the functions does it performs?
do you need to know if there are any missing values? : Sas programming
What is the maximum length of the macro variable?
What are the difficulties u faced while doing vital signs table or dataset?
what is program data vector? : Sas-administrator
What are the automatic variables for macro? : sas-macro
what are the categories that sas informats are used to the place the data? : Sas-administrator
What are the new features included in the new version of SAS Programming Language?
What are the statements that are executed only?
Approximately what date is represented by the SAS date value of 730?
What are the special input delimiters used in SAS?
How to create list output for cross-tabulations in proc freq?