Can you excute a macro within a macro? Describe.
Answers were Sorted based on User's Feedback
Answer / i.hari prasad reddy
we can excute a macro within a macro using symget.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / mallikarjuna reddy
such macros are called nested macros. that can be obtained
by using symget and call symput macros.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / yella reddy
Above answer not sufficient. using SYMGET can resolve upper
most macro only, but not for nested macros. for executing
macro with in macro use RESOLVE function.
| Is This Answer Correct ? | 1 Yes | 0 No |
How long can a macro variable be? A token? : sas-macro
what are the differences between proc report and proc tabulate?
How would you determine how far down on a page you have printed in order to print out footnotes?
Please write codes to merge two datasets and keep every record in the first dataset.
In the flow of DATA step processing, what is the first action in a typical DATA Step?
data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.
what is portability of sas programmes?
What would be the value of month at the end of data step execution and how many observations would be there?
How do you write a test plan?
What are pdv and it functions?
how to get second highest salary from a employee table and how get a 5th highest salary from a employee table?
If reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record?