how we can call macros with in data step?
Answer Posted / 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 |
Post New Answer View All Answers
How to create a permanent sas data set?
Explain proc sort?
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
What are the new features included in the new version of SAS Programming Language?
What are the applications primarily used by business analyst? : Sas-bi
What is PDV?
describe about metadata object? : Sas-di
Have you ever used the SAS Debugger?
how will you location sas platform applications available from web browser? : Sas-bi
If a variable contains letters or special characters, can it be numeric data type?
Enlist the functions performed by sas.
What is the difference between order and group variable in proc report?
What do the SAS log messages "numeric values have been converted to character" mean?
What do you code to create a macro? : sas-macro