In which format does Date stores in sas..?
What is the use of DATE in SAS.?
Answer Posted / mannna
it is stored as numeric values.
Eg
data aaa;
a=today();
put a;
run;
it will show you numeric no equivalent to current date.After using format staement u can get todays date as;
data aaa;
a=today();
format a date9.;
put a;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how does sas handle missing values in procs? : Sas programming
Explain why double trailing @@ is used in input statement?
What is the difference between where and if statement?
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
is data integration and etl programming is same? : Sas-di
What will calendar procedure do?
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 are the advantages of using sas?
Explain what is data step?
hi all, I need the SAS DI DUMP(A00 260) for attending the certification. if any one have, pls provide it.Please Email to vrpotluri@hotmail.com. Thanks - Ramana
Explain the difference between informat and format with an example.
what are input dataset and output dataset options? : Sas programming
What is the use of divide function?
This entry was posted in General. Bookmark the permalink. Post a comment or leave
What is slibref?