We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Data to be displayed as a List

vishwakar
8 - Asteroid

Hi All

 

I am having data in the format

 

View_id Group_name
1 Name
1 Beta
1 Alpha
1 Testers

 

 

and I am looking for the output to be in single row 

 

View_id Group_name
1 Name,Beta,Alpha,Testers

 

Looking for help on using the right tool for obtaining the results.

 

Thanks for your help

 

Thanks

Vishwanath

6 REPLIES 6
MarqueeCrew
20 - Arcturus
20 - Arcturus
1. Add a field using a formula tool named header and put "Group_name" as a constant value.
2. Use a crosstab tool and your key is view_id. Your header is "header" and your "data" field is group_name. Your method is concatenation.

http://help.alteryx.com/10.0/index.htm#CrossTab.htm?Highlight=Crosstab

Thanks,

Mark
Alteryx ACE & Top Community Contributor

Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
s_pichaipillai
12 - Quasar

Another option would be 

you can use the Summarize tool to bring this list using concatenation by grouping View_id.

List.PNG 

 

 

MarqueeCrew
20 - Arcturus
20 - Arcturus

I like that idea more. So many ways to solve a problem. 

Alteryx ACE & Top Community Contributor

Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
vishwakar
8 - Asteroid

Thanks  MarqueeCrew  ,s_pichaipillai for helping me.

 

Thanks

Vishwanath

vishwakar
8 - Asteroid

Hi

 

View_idGroup_Name
1Name
1Beta
1Alpha
1Testers
1Name
1Alpha

 

 

 

I have duplicates in my data and I want to get the group name only once and I want the output to be displayed

 

View_idGroup_Name
1Name,Alpha,Testers,Beta

 

Thanks for the help

MarqueeCrew
20 - Arcturus
20 - Arcturus
First you could unique the data on viewid and group name. Then use the summarize by concatenation solution.
Alteryx ACE & Top Community Contributor

Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
Labels
Top Solution Authors