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


Hi all,

is there a way to merge a lot of datsets with increasing suffixes?

data mydataset;

     merge step1 step2 step3 [...] step27;

     by myvar;

run;

is very long to write.

data mydatset;

     merge step1 - step27;

     by myvar;

run;

doesn't work...

any suggestions?

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

With a macro:

data mydataset;

merge

  %macro datasets;

  %do i = 1 %to 27;

  step&i

  %end;

  %mend;

  %datasets

;

by myvar;

run;

But you don't need that, as others already said, the set1-set27 solution works at least in 9.2.

View solution in original post

5 REPLIES 5
Ksharp
Super User

What version of sas are you using ? I can run your code.

Lupacante
Calcite | Level 5

SAS enterprise guide

Haikuo
Onyx | Level 15

Merge statement supports data sets lists, so It should work.

Please elaborate more on  "doesn't work...". Did it throw an error message or it didn't work the way you expected? Do you have the log? More details would be helpful.

So you are using the Eguide, but what version? 4.3/5.1 or 6.1?

Regards,

Haikuo

Lupacante
Calcite | Level 5

IT's 4.1.

It doesn't run at all, just gives an error message.

It's ok though, I've solved it by writing a macro around it as RW9 suggested.

Thanks for your answers

Kurt_Bremser
Super User

With a macro:

data mydataset;

merge

  %macro datasets;

  %do i = 1 %to 27;

  step&i

  %end;

  %mend;

  %datasets

;

by myvar;

run;

But you don't need that, as others already said, the set1-set27 solution works at least in 9.2.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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