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
how to debug and test the sas program? : Sas-administrator
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
How can sas program be validated?
Describe what are the different levels of administrative users in sas? : sas-grid-administration
Give e an example of..
what is the use of proc sql? : Sas programming
explain about sas business intelligence? : Sas-bi
What is the maximum and minimum length of macro variable
How do you convert basic cube to transaction cube and transaction cube to basic cube?
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
Have you ever used the SAS Debugger?
What is interleaving in SAS?
how does sas handle missing values in procs? : Sas programming
What do you code to create a macro? : sas-macro
How to include or exclude specific variables in a data set?