Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

How to do converse of Concatenate in Summarize function ?

Harsh-Goyal
6 - Meteoroid

Hi All,

 

I recently used Summarize > String > Concatenate option in Alteryx and with that, I concatenated multiple values separated by "," 

 

Now i want to do the exact opposite based on the concatenated version, how best can I do it any suggestion

 

Example Initially i converted:

 

Text           Values

xxx               x1

xxx               x2

xxx               x3

xxw              Y1

xxw              Y2

 

to 

Text          Values

xxx             x1,x2,x3

xxw            Y1,Y2

 

 

Now i want to transform it back to original state:

 

from this:

Text          Values

xxx             x1,x2,x3

xxw            Y1,Y2

 

to this: 

xxx               x1

xxx               x2

xxx               x3

xxw              Y1

xxw              Y2

 

How?

 

2 REPLIES 2
Aaron_Harter
11 - Bolide

Hi @Harsh-Goyal

 

Check out the Text to Columns tool, configured to 'split to rows':

1.PNG 

Harsh-Goyal
6 - Meteoroid

 

Labels