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

Hello,

today I wanted to merge two data sets together to finally draw some plots with the data. I got the code working outside of a macro, but as I have more data sets I wanted to create a macro for this:

Lets say I have data like this:

data data1;
   input y ;
   datalines;
    1
    2
    4
    2
    6
    4
    3
    4
;

data data2;
   input y ;
   datalines;
    4
    3
    7
    5
    6
    9
    5
    4
;

Now I want to merge the two data sets:

%MACRO createPlotData(data1 , data2); 
proc sql;
  create table plot1 as
  select
    y 
  from
   &data1
  ;
quit;
proc sql;
  create table plot2 as
  select
    y as y1
  from
   &data2
  ;
quit;

data outputPlotData;
     set plot1 plot2;
run;
%MEND;

The code is working when I use it outside of the macro. I already googeld and looked in this forum for a solution but I could not get the code to work. I think I need to at something inside the proc sql code?

Thanks for your help!

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

Your code is working for me:

 

data data1;
input y ;
datalines;
1
2
4
2
6
4
3
4
;

data data2;
input y ;
datalines;
4
3
7
5
6
9
5
4
;

%MACRO createPlotData(data1 , data2);
proc sql;
create table plot1 as
select
y
from
&data1
;
quit;
proc sql;
create table plot2 as
select
y as y1
from
&data2
;
quit;

data outputPlotData;
set plot1 plot2;
run;
%MEND;
%createPlotData(data1,data2)

View solution in original post

2 REPLIES 2
novinosrin
Tourmaline | Level 20

Your code is working for me:

 

data data1;
input y ;
datalines;
1
2
4
2
6
4
3
4
;

data data2;
input y ;
datalines;
4
3
7
5
6
9
5
4
;

%MACRO createPlotData(data1 , data2);
proc sql;
create table plot1 as
select
y
from
&data1
;
quit;
proc sql;
create table plot2 as
select
y as y1
from
&data2
;
quit;

data outputPlotData;
set plot1 plot2;
run;
%MEND;
%createPlotData(data1,data2)

mrer
Fluorite | Level 6
True! **bleep** it... got confues by result pages which comes up automatically after running the code. It showed a different data set. thanks!

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
  • 2 replies
  • 1331 views
  • 0 likes
  • 2 in conversation