Approximately what date is represented by SAS date value of
730
Answers were Sorted based on User's Feedback
Answer / mu mu
12/31/1961
data a;x=730;;proc print data=a; format x mmddyy10.;run;
| Is This Answer Correct ? | 29 Yes | 2 No |
Answer / sravan
data a;
x=730;
format x date9.;
run;
proc print data=a;run;
we get 31Dec1961
| Is This Answer Correct ? | 15 Yes | 2 No |
Answer / sheetal
In SAS Dates stored in numeric format, it starts from 1st
Jan 1960, and 1st jan 1960 consider as day # 0. So even
though 1960 was a leap year #days are 365 for year 1961 and
365 for 1961. Which means 365+365=730 nothing but last day
of 1961 - 31st Dec 1961.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / sriraghubabu
31dec1961
data a;
x=730;
proc print data=a;
format x date9.;
run;
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / pnprasad
In SAS Dates stored in numeric format, it starts from 1st
Jan 1960, so 730 means Jan 1962.
| Is This Answer Correct ? | 2 Yes | 7 No |
Have you been involved in editing the data or writing data queries?
1 Answers BioServe, Oracle, Sasken,
how many types of MERGE?
what is data integration? : Sas-di
What is the difference between match merge and one to one merge?
what is the use of sas management console? : Sas-di
Explain by-group processing?
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
There is a field containing a date. It needs to be displayed in the format "ddmonyy" if it's before 1975, "dd mon ccyy" if it's after 1985, and as 'Disco Years' if it's between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT
How do you add a number to a macro variable?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set.
What does PROC print, and PROC contents do?
Why is a STOP statement needed for the point=option on a SET statement?