how we can call macros with in data step?
Answers were Sorted based on User's Feedback
Answer / kishore
%macroname;
this is way of calling macro but call symput/symget r used to create macro variable from data step variable/symget vice versa
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / payal
Use callsymput in data step.
EX:
Data _null_;
set group;
call symput('_grpname',group name);
run;
| Is This Answer Correct ? | 2 Yes | 8 No |
Answer / ram pabba
%include statement can be used to call a macro within a
data setp.
or
call a macro with %macro-name (only if the) in the datasetp
(condition that this marco exists in the central location
where it is defiened).
Please anybody suggest if these are right answers.
| Is This Answer Correct ? | 0 Yes | 8 No |
how many types prompting framework can be broken down to? : Sas-bi
What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro
Explain proc sort?
How would you determine the number of missing or nonmissing values in computations?
what is the difference btw proc means and proc univariate?
Difference Between Scan and Substr
what does the run statement do? : Sas programming
Name and describe three SAS functions that you have used, if any?
what is transformation in sas data integration? : Sas-di
What system options would you use to help debug a macro? : sas-macro
What is the size of PDV?
If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to do?