BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SASSLICK001
Obsidian | Level 7

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.

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

You mean this ?

 

%macro x;
%let x=test;
%do i=1 %to 3;
  %let x=&x+;
%end;

%put &x;
%mend;

%x 

View solution in original post

4 REPLIES 4
LaurieF
Barite | Level 11

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.

Criptic
Lapis Lazuli | Level 10

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;
Jagadishkatam
Amethyst | Level 16
I like the approach of @Laurie F, Here is an alternate approach

%let macvar = %sysfunc(cats(test,+++));
%put &=macvar;
Thanks,
Jag
Ksharp
Super User

You mean this ?

 

%macro x;
%let x=test;
%do i=1 %to 3;
  %let x=&x+;
%end;

%put &x;
%mend;

%x 

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
  • 4 replies
  • 4670 views
  • 3 likes
  • 5 in conversation