Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Community is experiencing an influx of spam. As we work toward a solution, please use the 'Notify Moderator' option on the ellipsis menu to flag inappropriate posts.

Alteryx Designer Desktop Discussions

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

Rows of grouped data into one Row

Masond3
8 - Asteroid

Hi All, 

I am having abit of a mare and struggling to think of how to solve this use case. 

I have the following excel and the data structure is as follows, ( every 2 rows are a group) 

 

SourceIdentifierNameAddress
UNKNOWNxxxxxxxxMason LTD 123 High Street
DB111111111Mason LTD 1234 High Street

 

My steps so far is as follows ;

  • Add a "Record ID" Create a new column called RecordID
  • Add a formula with the following  CEIL([RecordID]/2)

This gives me the following 

 

Record SourceIdentifierNameAddressGroup 
1UNKNOWNxxxxxxxxMason LTD 123 High Street1
2DB111111111Mason LTD 1234 High Street1

 

From here what i would like to do is get to this outcome 

 

Group IdentifierIdentifierNameNameAddressAddress
1xxxxxxxx111111111Mason LTD Mason LTD 123 High Street1234 High Street

 

Really appreciate any assistance 

 

Kind Regards

Masond3

1 REPLY 1
Luke_C
17 - Castor
17 - Castor

Hi @Masond3 

 

Here's an example of an approach you can take. Note, you can't have multiple fields with the same name.

 

Luke_C_0-1631727161492.png

 

Labels