BookmarkSubscribeRSS Feed
weizhongma
Calcite | Level 5

Hi,

I have a dataset which contains one varible name with value of

NAME

AMORTIZED_INCOME__REV_

BONDS_BAL_

BONDS_REV_

CASA_BAL_

CASA_REV_

CASH_REV_

CASH_SECURED__BAL_

CASH_SECURED__REV_

CA_BAL_

How could I create a macro parameter varlist from above dataset the same as I did manually as below?

%LET varlist = %STR(

AMORTIZED_INCOME__REV_

BONDS_BAL_

BONDS_REV_

CASA_BAL_

CASA_REV_

CASH_REV_

CASH_SECURED__BAL_

CASH_SECURED__REV_

CA_BAL_) ;

Thanks for your help!

3 REPLIES 3
AncaTilea
Pyrite | Level 9

HI.

One way would be to use PROC SQL and SELECT INTO:

Something like this,

PROC SQL;

     SELECT NAME SEPARATED BY "  "

     INTO: NAME_LIST

FROM WORK.YOURDATA;

QUIT;

%PUT &NAME_LIST;

Anca.

weizhongma
Calcite | Level 5

Thanks Anca. But I got error message.

 

83 PROC SQL;

84 SELECT NAME

85 SEPARATED BY " "

--------- --

22 202

ERROR 22-322: Syntax error, expecting one of the following: a quoted string, !, !!, &, (, *, **, +, ',', -, '.', /, <, <=, <>,

=, >, >=, ?, AND, AS, BETWEEN, CONTAINS, EQ, EQT, FORMAT, FROM, GE, GET, GT, GTT, IN, INFORMAT, INTO, IS, LABEL,

LE, LEN, LENGTH, LET, LIKE, LT, LTT, NE, NET, NOT, NOTIN, OR, TRANSCODE, ^, ^=, |, ||, ~, ~=.

ERROR 202-322: The option or parameter is not recognized and will be ignored.

86 INTO: NAME_LIST

87 FROM xtest;

88 QUIT;

AncaTilea
Pyrite | Level 9

Yes, I made a mistake. Need to switch the into: and separated

You need select name into: name_list separated by ' '

From dataset;

Quit;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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