Free Trial

Alteryx Designer Desktop Discussions

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

Transpose data into one row

JokeFun
8 - Asteroid

I have a list of data in below sample format:

Customer NoCorp TypeYesNo
12345c.aY
 c.bY
 c.cY
 c.dY
 c.eY

 

What I want to show is like this: 

Customer Noc.ac.bc.cc.dc.e
12345YYYYY

 

What I have now after using transpose tool is like below. Appreciate your help!

Customer Noc.ac.bc.cc.dc.e
12345Y    
12345 Y   
12345  Y  
12345   Y 
12345    Y
1 REPLY 1
Tony_Castillo
9 - Comet

Instead of Transpose, why not use Crosstab? 

 

I added a formula presuming you will have multiple customer numbers in your dataset with blank rows:

if IsEmpty([Customer No])then [Row-1:Customer No] else [Customer No] endif

 

Spoiler
crosstab instead of transpose.png

 

Labels
Top Solution Authors