Approximately what date is represented by SAS date value of
730

Answer Posted / sriraghubabu

31dec1961


data a;
x=730;
proc print data=a;
format x date9.;
run;

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the role of sas grid administrator? : sas-grid-administration

822


If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?

699


what is the purpose of _error_? : Sas programming

604


What does proc print, and proc contents are used for?

607


How to read an input file in sas?

652






What is by-group processing?

572


How would you define the end of a macro? : sas-macro

601


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1791


What areas of SAS are you most interested in?

1060


what is function of retain statment

1518


How do dates work in SAS data?

679


please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??

1661


What are the default statistics for means procedure?

636


What are the new features included in the new version of SAS Programming Language?

731


why is sas considered self-documenting? : Sas programming

675