Hi all,
Could you please help in the following case. I need to assign a value of substring to a macrovrariable. It should be done inside data step.
This program is not functioning. Y should be equal '3'. Could you please correct. Thank you!
data test;
EPOCH='TREATMENT 3';
%let TP=%sysfunc(substr(EPOCH,11,1));
Y="&TP.";
run;
The correct functions to create a macro variable from a data step are Call Symput and Call sumputx.
You generally would not be able to reference the macro variable created within the same data step (and why would it be needed).
data test;
EPOCH='TREATMENT 3';
call symputx('TP',epoch);
run;
%put &tp;
However if you use data step which uses a SET statement you will need to consider which record(s) you want to create the macro variable from as without conditional code it will create ONE macro variable with the LAST value from the data set read.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.