How experienced are you with customized reporting and use
of Data _Null_ features?
Answer Posted / harish
sas variable to count no of observation to read
Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
For what purposes have you used sas macros? : sas-macro
What is interleaving in SAS?
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 work of tranwrd function?
I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com
what is intially documentation in sas?
Explain the special input delimiters used in sas programming.
Differentiate between ceil and floor functions.
what can you learn from the sas log when debugging? : Sas programming
what is SAS OPTIMIZATION?
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??
What are the statements in proc sql?
What is the difference between input and infile statement?
describe the interaction table in sas di? : Sas-di
how do you debug and test your sas programs? : Sas programming