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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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
  • 1262 views
  • 0 likes
  • 3 in conversation