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 / naveen
proc sql;
select *
from qqq
format date date9.;
quit;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how do the in= variables improve the capability of a merge? : Sas programming
What versions of SAS have you used (on which platforms)?
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
Mention the validation tools used in SAS?
What is the purpose of _character_ and _numeric_?
How can sas program be validated?
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
Tell me about % include and % eval? : sas-macro
what is data governance? : Sas-di
What do you code to create a macro? : sas-macro
what other sas products have you used and consider yourself proficient in using? : Sas programming
What are the different versions of sas that you have used until now? : sas-grid-administration
Name validation tools used in SAS
Mention what is PROC in SAS?
How do you specify the number of iterations and specific condition within a single do loop?