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

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!

1 ACCEPTED SOLUTION
3 REPLIES 3
ballardw
Super User

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.

FreelanceReinh
Jade | Level 19

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;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1853 views
  • 1 like
  • 4 in conversation