Global Macro Variables:The global macro variable gets created during the initialization of a SAS session and its get deleted at the end of the session.
Global macro variable cane be created with
Global Macro Variables:The global macro variable gets created during the initialization of a SAS session and its get deleted at the end of the session.
Global macro variable cane be created with
SymputX is the upgrade from Call Symput. Syntax: call symputx(“macro_var_name”, character_value (or numeric to be converted to char), symbol table def); Where symput will produce a note about converting character values to numeric, symputx won’t produce such a note. Additionally it will strip leading and trailing spaces form the character value. Lastly, you can define […]