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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 3971 views
  • 2 likes
  • 6 in conversation