BookmarkSubscribeRSS Feed
DmytroYermak
Lapis Lazuli | Level 10

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;
2 REPLIES 2
ballardw
Super User

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.

DmytroYermak
Lapis Lazuli | Level 10
Thank you for the prompt reply. I completely forget about the call symputx...

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1028 views
  • 1 like
  • 2 in conversation