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

Not in a single select statement since you have missing values. Use different select statements 

data test;
infile datalines dlm=',' dsd missover;
input House $ Portfolio $ City $;
datalines;
eson Str,1,London
Portabello,2,Peru
Munopolis,3,Lisbon
duncaster,4,New York
,5,Los Angeles
,6,
,7,
,8,
;
run;

 proc sql ;
select quote(trim(House)) into:List_house separated by ''
	from test
	where House is not null;
select quote(trim(Portfolio)) into:List_portfolio separated by ''
	from test
	where Portfolio is not null;
select quote(trim(City)) into:List_city separated by ''
	from test
	where City is not null;
quit;

%put &List_house;
%put &List_portfolio;
%put &List_city;
Thanks,
Suryakiran

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 15 replies
  • 2344 views
  • 2 likes
  • 6 in conversation