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
what are the considerations when picking a SAS/STAT procedure?
Tell me more about the parameters in macro? : sas-macro
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
how many display types available in sas bi dashboard? : Sas-bi
How do you define proc in sas? : sas-grid-administration
why is sas data integration studio important? : Sas-di
What is the difference between proportion and average?
describe the interaction table in sas di? : Sas-di
Name some categories in sas 9? : sas-grid-administration
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
what is slowly changing dimension? : Sas-di
Explain the purpose of retain statement.
For clinical entire study how many tables will create approx?
Which command is used to save logs in the external file?
What can you learn from the SAS log when debugging?