Which function is used to count the number of intervals between two sas dates?
No Answer is Posted For this Question
Be the First to Post Answer
List down the reasons for choosing sas over other data analytics tools.
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.
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
how we can call macros with in data step?
If a variable contains letters or special characters, can it be numeric data type?
how does sas handle missing values in sort order? : Sas programming
how to remove the duplicates by proc sql?
what is data governance? : Sas-di
What is the maximum length of the macro variable? : sas-macro
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
What are the advantages of using sas?
explain what is data set in sas? : Sas-administrator