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


Please Help Members By Posting Answers For Below Questions

Are you involved in writing the inferential analysis plan? Tables specfications?

2358


explain about sas business intelligence? : Sas-bi

858


Describe the ways in which you can create a macro variable?

866


what is function of retain statment

1826


explain the use of % includes a statement in sas? : Sas-administrator

799


Explain data step in SAS

871


Of all your work, where have you been the most successful?

4456


What system options would you use to help debug a macro? : sas-macro

894


What commands are used in the case of including or excluding any specific variables in the data set?

863


what is sas enterprise intelligence architecture? : Sas-bi

787


explain what is factor analysis? : Sas-administrator

868


What do the put and input function do?

820


explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di

844


What is maximum storage capability of SAS?

1139


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.

2053