I have a list of values separated by space.
%let list = A B C;
I would like to create a single-column dataset.
Col1 |
A |
B |
C |
Thanks in advance!
data want;
do i = 1 to countw("&list.");
col1 = scan("&list.",i);
output;
end;
drop i;
run;
data want;
do i = 1 to countw("&list.");
col1 = scan("&list.",i);
output;
end;
drop i;
run;
You may want to consider specifying a length for Col1 variable based on your knowledge of the starting list. The default length using @Kurt_Bremser's solution will create a variable that is the length of the entire list. If you have many values that could mean that you have a variable of several hundred (or thousand) characters even though the longest value of interest is only one or two or some other number much smaller than thousands.
You can also let SAS determine the minimum required length of Col1:
data wide / view=wide;
retain c1-c%sysfunc(countw(&list,%str( )))
("%sysfunc(tranwrd(&list,%str( ),%str(" ")))");
run;
proc transpose data=wide out=want(drop=_:);
var c:;
run;
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!
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.
Ready to level-up your skills? Choose your own adventure.