BookmarkSubscribeRSS Feed
SASNE
Obsidian | Level 7

Hi Guru,

 

Hope you can help with this question, do you know how to  catx  group by in Query builder?

 

e.g.

 

Dataset :

Apple     A

Apple     P

Orange  O

Orange  R

 

Expected output

Apple A,P

Orange O,R

 

Thanks

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Its not a simple task in SQL, wrong type of output data structure.  Simple in a datastep however:

data want;
  set have;
  length fruit_list $2000;
  retain fruit_list $;
  by fruit;
  fruit_list=ifc(first.fruit,list,catx(',',fruit_list,list);
run;

Now I have assumed fruit is the first column and is character, list is the second and is character - this is because you have not provided test data in the form of a datastep.

SASNE
Obsidian | Level 7

Hi RW9,

 

thanks, do you know how to do that in Enterprise guide under query builder?

 

 

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Query builder is SQL, so that is not the best tool for the job - if it is at all possible in the tool.  You can add code nodes into your EG project can you not, i.e. process the data before you go to your Query Builder?  Personally I avoid front ends for coding, they are limited at the best of times, and downright pain in the regions in others.

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 3 replies
  • 1528 views
  • 0 likes
  • 2 in conversation