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

Dear experts,

 

I have a variable called as follows:

%let date=200907;

 

And a table containing the following variables:

AA_200901, AA_200902, AA_200903, AA_200904, B, C, D

 

In the proc sql; I would like to select:

B, C, D and AA_+&date.

 

Any idea on how to do it? I would like to keep it as simple as possible.

Thanks a lot in advance. SH

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
collinelliot
Barite | Level 11

I guess I don't understand the issue, because it seems like your %let gives you what you want:

 

This:

 

%let date=200907;

 

proc sql;

    CREATE TABLE want AS

    SELECT b, c, d, aa_&date

    FROM have;

quit;

 

Will give you this:

 

proc sql;

    CREATE TABLE want AS

    SELECT b, c, d, aa_200907

    FROM have;

quit;

 

Is that not what you want?

 

View solution in original post

2 REPLIES 2
collinelliot
Barite | Level 11

I guess I don't understand the issue, because it seems like your %let gives you what you want:

 

This:

 

%let date=200907;

 

proc sql;

    CREATE TABLE want AS

    SELECT b, c, d, aa_&date

    FROM have;

quit;

 

Will give you this:

 

proc sql;

    CREATE TABLE want AS

    SELECT b, c, d, aa_200907

    FROM have;

quit;

 

Is that not what you want?

 

anoopmohandas7
Quartz | Level 8

Hope the below helps. 

 

%let date=200907 ;

data have ;
input AA_200901 $ AA_200902 $ AA_200907 $ ;
datalines ;
TES LO WE
;
run ;

proc sql ;
select AA_&date.  as test1 
from have ;
quit ;

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