How to convert a given date value into SAS date
Answer Posted / sheetal
data temp;
date='17/12/2009';
m=substr(date,4,2);
d=substr(date,1,2);
y=substr(date,7,4);
d1=mdy(m,d,y);
format d1 mmddyy10.;
run;
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
Describe the function and untility of the most difficult SAS macro that you have written.
What are the differences between proc means and proc summary?
Name some categories in sas 9? : sas-grid-administration
What is the use of PROC gplot?
What is the difference between where and if statement?
Hi, If anyone has base SAS certification dumps, please share.
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
What is SAS? What are the functions does it performs?
how many display types available in sas bi dashboard? : Sas-bi
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
Define run-group processing?
how will you locate the sas platform applications? : Sas-bi
What are common programming errors committed in sas
Mention what are the data types does SAS contain?
why is sas data integration studio important? : Sas-di