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);

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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 6945 views
  • 0 likes
  • 5 in conversation