What are the different types of sas functions?
What is the difference between nodupkey and nodup options?
One way of creating a new variable in Macros is by % Let....What is the other way..?
Does anybody have SAS Training manual or documentation or can you refer me any book to have better understanding on SAS. I am fresher to SAS tool. (Ready to pay)
What is the use of %include statement?
what are methods to identify duplicate observations?
Explain the purpose of substr functions in sas programming.
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 interleaving in SAS?
Baseline definition in your study
3 Answers Accenture, Quintiles,
Describe the function and untility of the most difficult SAS macro that you have written.
What are the new features included in the new version of SAS Programming Language?
How to get the repeated values by using sql in sas ?