How would you compile all macros from a folder in a study, within the autoexec program?
Answer / sumanth
Using options sasautos = (sasautos,"&_macros") after a libname statement
| Is This Answer Correct ? | 1 Yes | 2 No |
what is prime numbers? how we can get plc write sas code?
Under what circumstances would you code a SELECT construct instead of IF statements?
How would you include common or reuse to be processed along with your statements?
data jagan1.s; input bp$; cards; 100/90 120/89 112/87 run; in the above code how to convert character data values to numeric data values?
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
What sas features do you use to check errors and data validation?
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 basic structure of a sas program?
what is syntax of proc merge ?
Hi Jeevan/Akshara I have tried to contact SASI Vats for latest Advanced SAS Programming Certification Dumps (A00-212) but have not got any response. I would highly and gratefully appreciate your assistance in this regard. If you guys have access to this, would you be kind enough to forward it to me ? I would abide by all the terms you have for this. Please, note my email id: upretigopi@yahoo.com Preti Sharma
What do you feel about hardcoding?
At compile time when a SAS data set is read, what items are created?