Answer Posted / ramesh varma
intck is tells you between dates.
intnx is tells you adding dates
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is the difference between using drop = data set option in data statement and set statement?
What do you code to create a macro? : sas-macro
Explain what is the use of proc gplot?
what has been your most common programming mistake? : Sas programming
How can you limit the variables written to output dataset in data step?
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 a put statement?
What is the difference between %put and symbolgen? : sas-macro
Will it bother you if the guy at the next desk times the frequency and duration of your bathroom or coffee breaks on the grounds that ?you are getting paid twice as much as he is??
Where do you use proc means over proc freq?
what is snowflake schema? : Sas-di
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
where are dashboard components are created and maintained? : Sas-bi
how does sas handle missing values in assignment statements? : Sas programming
Explain by-group processing?