Saved Bookmarks
| 1. |
What Is Call Symput? |
|
Answer» CALL SYMPUT takes a VALUE from a data step and assigns it to a macro variable. I can then use this macro variable in LATER steps. To assign a value to a SINGLE macro variable, We use CALL SYMPUT with this GENERAL FORM: CALL SYMPUT (“macro-variable-name”, value); CALL SYMPUT takes a value from a data step and assigns it to a macro variable. I can then use this macro variable in later steps. To assign a value to a single macro variable, We use CALL SYMPUT with this general form: CALL SYMPUT (“macro-variable-name”, value); |
|