BookmarkSubscribeRSS Feed
armor
Calcite | Level 5

just copy the following code into SAS, run it, and then open dataset s in your work library, then you would see straight away what my code does.

*========================;

%macro test1(n);

data s;

format x $10000.; x="";

format y $10000.; y="";

%do j=1 %to &n.;

x="%do i&j.=1 %"||"to 5;"||strip(x);

y="%end;"||strip(y);

%end;

call symputx("y",y);

call symputx("x",x);

run;

&x.;

&y.;

%mend;

%test1(n=100);

*========================;

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of 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
  • 15 replies
  • 5324 views
  • 0 likes
  • 5 in conversation