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 would you code the criteria to restrict the output to be produced?
How does Mr.Lanka Srinivas teach SAS? Are his accomplishments real? What are the future prospects for SAS?
what does the run statement do? : Sas programming
what are the scrubbing procedures in sas? : Sas programming
What are the different versions of sas that you have used until now? : sas-grid-administration
How can I remove header from output data set?
for report generation which one you used proc report or data_null_?
3 Answers Accenture, Quintiles,
how can get the first and last observations in a dataset using Proc SQl?
Which is the best place to learn SAS clinicals and Oracle clinical in hyderabad?
Mention few ways with which a “table lookup’ is done in sas programming.
explain about various caches available in data integrator? : Sas-di
data voter; input Age Party : $1. (Ques1-Ques4)($1. + 1); datalines; 23 D 1 1 2 2 45 R 5 5 4 1 67 D 2 4 3 3 39 R 4 4 4 4 19 D 2 1 2 1 75 D 3 3 2 3 57 R 4 3 4 4 ; Idont understand what the (Ques1-Ques4)($1. + 1) means. I have seen (Ques1-Ques4)(4*$1.), but what is (Ques1-Ques4)($1. + 1)? Appreciate all help Thanks