Alteryx Designer Desktop Discussions

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

Moving data for a record from multiple rows to a single row

JMoriarty65
7 - Meteor

I have a set of data that has a semi repetitive format that i would like to move from having multiple rows per record to a single row, but i always struggle with transpose and crosstab. Not sure if this can be done, any help would be appreciated.

 

 

This is the current format

 
Evaluation DateEvaluation Score
12/8/2023 8:46100
Contract Number571789878
12/19/2023 13:53100
Contract Number500005404
12/19/2023 14:370
Contract Number571078974
Was the transaction processed accuratelytaxes were withheld for state of NC. No taxes should have been withheld
Was the transaction processed accurately errorstaxes should not be withheld for a 1035 exchange.

 

This is the format i would like 

 

Evaluation DateEvaluation ScoreContract NumberWas the transaction processed accuratelyWas the transaction processed accurately errors
12/8/2023 8:46100571789878  
12/19/2023 13:53100500005404  
12/19/2023 14:370571078974taxes were withheld for state of NC. No taxes should have been withheldtaxes should not be withheld for a 1035 exchange.

 

 

 

 

2 REPLIES 2
Luke_C
17 - Castor

Hi @JMoriarty65 

 

Here's one way:

  1. Assign an ID to each record, I did this by looking for the date format in the first column.
  2. Separate the data between the evaluation date/score and the other 3 fields
  3. Cross tab the other 3 fields and join back

image.png

JMoriarty65
7 - Meteor

Thanks for the help!

Labels