Hi All
I am trying to create a macro variable with value formed by concatenate symbol ("+" ) to a text string.
for example i need to create the following, attaching "+" based on iterations (4 times) and store it in a macro variable.
"test++++"
Thanks for all the help.
You mean this ?
%macro x;
%let x=test;
%do i=1 %to 3;
%let x=&x+;
%end;
%put &x;
%mend;
%x
Is what you want as simple as this?
%let macvar = test%sysfunc(repeat(+, 3));
%put &=macvar;
The repeat function takes the first parameter and repeats it n times.
Here a coding example if you want to do it inside of a data step:
data _null_;
length combined $50.;
base = "Hello";
combined = cat(base,repeat("+",3));
call symput("plusString",combined);
run;
%put &plusString;
You mean this ?
%macro x;
%let x=test;
%do i=1 %to 3;
%let x=&x+;
%end;
%put &x;
%mend;
%x
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.