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
Mention common programming errors committed in sas ?
How would you define the end of a macro? : sas-macro
How to create list output for cross-tabulations in proc freq?
How does the internal authentication work in sas? : sas-grid-administration
what is slowly changing dimension? : Sas-di
What does the RUN statement do?
What is run-group processing?
how are numeric and character missing values represented internally? : Sas programming
what is sas and what are the functions? : Sas-administrator
How we can create SAS USER DEFINED CODE?
What is the basic structure of the SAS base program?
What is program data vector (pdv) and what are its functions?
Explain the use of proc print and proc contents?
What are the difference between ceil and floor functions in sas?
How can you create a macro variable with in data step? : sas-macro