How would you compile all macros from a folder in a study, within the autoexec program?
Answer Posted / sumanth
Using options sasautos = (sasautos,"&_macros") after a libname statement
Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Are you involved in writing the inferential analysis plan? Tables specfications?
explain about sas business intelligence? : Sas-bi
Describe the ways in which you can create a macro variable?
what is function of retain statment
explain the use of % includes a statement in sas? : Sas-administrator
Explain data step in SAS
Of all your work, where have you been the most successful?
What system options would you use to help debug a macro? : sas-macro
What commands are used in the case of including or excluding any specific variables in the data set?
what is sas enterprise intelligence architecture? : Sas-bi
explain what is factor analysis? : Sas-administrator
What do the put and input function do?
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
What is maximum storage capability of 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.