BookmarkSubscribeRSS Feed
bharadwaj6560
Calcite | Level 5

Hi Folks

 

I have 3 sample data sets named 1)x

                                                        2)y

                                                        3)z

I tried to concatenate 3 data sets as x021218.sas7bdat ,y021218.sas7bdat,z021218.sas7bdat.

 

For this to happen i have used below mentioned line of code 

%let x = %sysfunc(cats(x,%sysfunc(intnx(day,%sysfunc(date()),-1),mmddyy6.)));

but i could see my out put as x21218.sas7bdat .

 

could you please help me in getting the desired output

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

When you say "concatenate datasets", what do you mean? Do you want to stack them op top of each other? Do they share the same variables?

 

Please be more specific

bharadwaj6560
Calcite | Level 5

concatenate in my perspective means adding a previous date in mmddyy6. format to dataset

 

for example my output data set requirement is x021218.sas7bdat 

 

so i used this line of code for example %let test = %sysfunc(cats(x,%sysfunc(intnx(day,%sysfunc(date()),-1),mmddyy6.)));

 

but my output is in following format x21218.sas7bdat

Satish_Parida
Lapis Lazuli | Level 10

This Works as you described.

 

data _null_;
x=today();
y=put(x,ddmmyy6.);
call symput('dates',y);
run;

data x_&dates.;
set x;
run;

data y_&dates.;
set y;
run;

data y_&dates.;
set y;
run;

Let us know if it worked. 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 810 views
  • 0 likes
  • 3 in conversation