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
Do you know the features of sas?
What are the five ways to do a table lookup in sas? : sas-grid-administration
In proc transpose and data step with arrays which one you pick?
what are several options for creating reports in web report studio? : Sas-bi
what is function of retain statment
how the sas basic syntax style described? : Sas-administrator
Explain how merging helps to combine data sets.
I have a dataset concat having variable a b & c. How to rename a b to e & f?
What is substr function?
If a variable contains only numbers, can it be a character data type?
Have you used macros? For what purpose you have used? : sas-macro
What are the functions used for character handling?
What are symget and symput? : sas-macro
What are SAS/ACCESS and SAS/CONNECT?
Give some examples where proc report’s defaults are different than proc print’s defaults?