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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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
  • 2281 views
  • 1 like
  • 2 in conversation