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

Hi,

 

I wonder if anyone has an answer to Oracles LISTAGG function for SAS?

 

I'm using base SAS programming 7.1 & need some examples if anyone can help.

 

I've seen some examples using the 'BY' process.

 

Does anyone have any clear examples?

 

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisNZ
Tourmaline | Level 20

SAS doesn't have summary functions for strings, sadly.

So you'll have to code it. For example:

 

data CLASS (index=(SEX));
  set SASHELP.CLASS;
run;
data T;
  length NAMES $200;
  retain NAMES;
  set CLASS;
  by SEX;
  if first.SEX then NAMES='';
  NAMES=catx(',',NAMES, NAME) ;
  if last.SEX then putlog NAMES=;
run;

NAMES=Alice,Barbara,Carol,Jane,Janet,Joyce,Judy,Louise,Mary

NAMES=Alfred,Henry,James,Jeffrey,John,Philip,Robert,Ronald,Thomas,William

 

 

 

 

View solution in original post

1 REPLY 1
ChrisNZ
Tourmaline | Level 20

SAS doesn't have summary functions for strings, sadly.

So you'll have to code it. For example:

 

data CLASS (index=(SEX));
  set SASHELP.CLASS;
run;
data T;
  length NAMES $200;
  retain NAMES;
  set CLASS;
  by SEX;
  if first.SEX then NAMES='';
  NAMES=catx(',',NAMES, NAME) ;
  if last.SEX then putlog NAMES=;
run;

NAMES=Alice,Barbara,Carol,Jane,Janet,Joyce,Judy,Louise,Mary

NAMES=Alfred,Henry,James,Jeffrey,John,Philip,Robert,Ronald,Thomas,William

 

 

 

 

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 16. 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
  • 1 reply
  • 2424 views
  • 1 like
  • 2 in conversation