Alteryx Connect Discussions

Find answers, ask questions, and share expertise about Alteryx Connect.
SOLVED

Copying over data across multiple rows

griseldagomes
7 - Meteor

Hi All,

 

For the below set of data, I need to copy over columns 2, 3, 4 onto a new row depending on how many issues exists.
For exmaple, on row 1, there are 3 issues, hence row 1 will be split into row 1, 2, 3 and data from columns 2, 3 and will be copied over onto rows 2 and 3.


Note: Number of issues could be much more.

 

Issue TypeNameStatusAmount
Issue 1: Issue 2: Issue 3JohnPending125
Issue 2PeterFailed5846
Issue 4:Issue 2JamesNot Started98787
Issue 3: Issue 1: Issue 5: Issue 4JaneDiverted24587

 

Below is the expected data. Any help would be appreciated.

Issue TypeNameStatusAmount
Issue 1JohnPending125
Issue 2JohnPending125
Issue 3JohnPending125
Issue 2PeterFailed5846
Issue 4JamesNot Started98787
Issue 2JamesNot Started98787
Issue 3JaneDiverted24587
Issue 1JaneDiverted24587
Issue 5JaneDiverted24587
Issue 4JaneDiverted24587


Thanks,
Griselda 

2 REPLIES 2
MilindG
12 - Quasar

@griseldagomes  Add the delimiter and select split to rows option.

MilindG_0-1682687411962.png

 

griseldagomes
7 - Meteor

Thanks a lot Milind!