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
Are you involved in writing the inferential analysis plan? Tables specfications?
Intern stastical programmer written test
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
what r the job openings SAS for fresher graduates !
Mention common programming errors committed in sas ?
Give some examples where proc report’s defaults are same as proc print’s defaults?
Differences between where and if statement?
Explain substr function?
what is data governance? : Sas-di
what is sas olap server? : Sas-di
What would be the value of month at the end of data step execution and how many observations would be there?
Mention what is SAS data set?
what are some good sas programming practices for processing very large data sets? : Sas programming
How do you define proc in sas? : sas-grid-administration
What is program data vector (pdv)?