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 

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