Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

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

Merging multiple rows into one

koralynah
6 - Meteoroid

Hi there, 

 

I have a data set where there are multiple rows for the same request number. Each row details provides a sequence step and time processed. I would like to combine all of the sequences and times processed into a single row (by request number). I've tried doing so by using the transpose/cross tab tool but it's not getting me anywhere. Any suggestions? 

 

 

Process time_ alteryx.PNG

 

 

 

 

 

8 REPLIES 8
NicoleJohnson
ACE Emeritus
ACE Emeritus

I am guessing that by keeping your Sequence ID in your Group By selections for the Cross Tab tool at the end of your original workflow, you might have been ending up listing them twice, when you're really capturing that info in the column headers and don't still want them listed out individually in your records below. Try adding this:

 

1. Transpose tool: Key fields = Request #, Action By, Comment Text (exclude Sequence ID)

2. Filter out any Null/0 values in the new "Value" column

3. Use the Cross-Tab tool to put the columns back at the top: Group by Request #, Action By, and Comment Text... Column Headers = Name... and Values = Value column.

 

Does that work for you? :) If not, perhaps a screenshot of your actual workflow or a sample with dummy data in a text input might help resolve!

 

NJ

Philip
12 - Quasar

I agree with @NicoleJohnson, checking the Sequence ID in the "Group Data by these Values" in the Cross Tab is causing it to be split out to separate rows instead of keeping on a single row. You don't need to keep it checked as they are becoming your New Column Headers. Uncheck the Sequence ID in the Group Data by these Values.

mborriero
11 - Bolide

@NicoleJohnsonapproach is a good solution.

Attached a workflow that create a row for each request and action by, adding columns for times, comments and types (Requestor, Elr Request, etc...).

suli
9 - Comet

Hi,

 

I think the simplest  (1 step) solution is to use a summarize tool:

 

group by: Request, Action By

Concatenate: Action ID

Longest (can find under String solutions): all sequence and sequence time columns.

 

Please find attached sample workflow.

vhackman
5 - Atom

I am having the same problem except I don't have a Sequence ID column, so I'm having a harder time figuring out the best way to go about solving this.

Adrian01
6 - Meteoroid

What Suli recommended worked perfectly for me with the same issue.

mocalvo
7 - Meteor

@suli's idea to use the Summarize tool worked perfectly for me! I needed to merge individual emails from separate rows into one field. Thanks!

minhdvo
7 - Meteor

Your idea is great.

It works for my problem.

 

Thanks,

Labels