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...

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 1124 views
  • 1 like
  • 2 in conversation