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

Good Morning!, 

 

I know this question might be silly but I am trying to achieve the following: 

 

(1) I have a variable for instance: %let Var1 = A B C;

Then I want to pass it in a Dataset column such that

 

data want; 

WantedColumn = &Var1;

run; 

 

However, this does not work. I have tried several combinations with PUT and SCAN but havent found the good one. 

 How is it done ??

 

Thank you for your time !,

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Then do

 

%let Var1 = A B C;

data want(drop=i); 
    do i=1 to countw("&Var1");
        WantedColumn=scan("&Var1", i);
        output;
    end;
run;

View solution in original post

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

Put quotes around your macro variable

 

%let Var1 = A B C;

data want; 
    WantedColumn = "&Var1";
run; 
carles
Fluorite | Level 6

This outputs me everything in one place but i want :

 

WantedColumn

A

B

C

 

 

NOT

 

Wanted Column

A B C

 

PeterClemmensen
Tourmaline | Level 20

Then do

 

%let Var1 = A B C;

data want(drop=i); 
    do i=1 to countw("&Var1");
        WantedColumn=scan("&Var1", i);
        output;
    end;
run;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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