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

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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