- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hello everybody,
How to use symput in data step to put a variable's each value of each oberservations into batch of macro variables?
data _null_;
set sashelp.class end=eof;
do until (eof);
call symput('aa'||_n_,sex);
end;
stop;
run;
%put &aa1 &aa2;
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
hi ... you might also consider SYMPUTX to reduce the length of the macro variables, for example ...
data _null_;
set sashelp.class (obs=2);
call symput(cats('aa',_n_),name);
call symputx(cats('bb',_n_),name);
run;
%put |&aa1| |&aa2|;
%put |&bb1| |&bb2|;
123 %put |&aa1| |&aa2|;
|Alfred | |Alice |
124 %put |&bb1| |&bb2|;
|Alfred| |Alice|
also, the various CAT functions do not give you log messages when concatenating numeric variables such as _N_
CATS applies STRIP to each argument so I don't think it's necessary to add the STRIP function within CATS
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
data _null_;
set sashelp.class end=eof;
*do until (eof);
call symput('aa'||left(_n_),sex);
*end;
*stop;
run;
%put &aa1 &aa2;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
or
data _null_;
set sashelp.class ;
call symputx(cats('aa',strip(_n_)),sex);
run;
%put _user_;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
hi ... you might also consider SYMPUTX to reduce the length of the macro variables, for example ...
data _null_;
set sashelp.class (obs=2);
call symput(cats('aa',_n_),name);
call symputx(cats('bb',_n_),name);
run;
%put |&aa1| |&aa2|;
%put |&bb1| |&bb2|;
123 %put |&aa1| |&aa2|;
|Alfred | |Alice |
124 %put |&bb1| |&bb2|;
|Alfred| |Alice|
also, the various CAT functions do not give you log messages when concatenating numeric variables such as _N_
CATS applies STRIP to each argument so I don't think it's necessary to add the STRIP function within CATS
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you Milke! It is good to know. - Linlin