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
describe the interaction table in sas di? : Sas-di
Can you explain the process of calendar?
What do the PUT and INPUT functions do?
How are numeric and character missing values represented internally?
What’s the difference between var b1 – b3 and var b1 — b3?
what are _numeric_ and _character_ and what do they do? : Sas programming
What is PDV?
explain about sas business intelligence? : Sas-bi
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?
In SAS explain which statement does not perform automatic conversions in comparisons?
What are the difference between sas functions and procedures?
How to include or exclude specific variables in a data set?
What is the purpose of _character_ and _numeric_?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
How can you limit the variables written to output dataset in data step?