Alteryx Designer Desktop Discussions

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

Table transformation

tww
8 - Asteroid

Hi all,

 

I am new to Alteryx. I am trying to combine two tables into one, see below. I am wondering how could I achieve that in Alteryx?

 

Input 1

 

COMPCompliance
Computer_OpsComputer Operations

 

Input 2

 

R01Existence or Occurrence
R02Completeness
R03Valuation or Allocation
R04Rights or Obligation
R05Presentation and Disclosure

 

Output

 

COMPComplianceCOMP.R01Existence or Occurrence
COMPComplianceCOMP.R02Completeness
COMPComplianceCOMP.R03Valuation or Allocation
COMPComplianceCOMP.R04Rights or Obligation
COMPComplianceCOMP.R05Presentation and Disclosure
Computer_OpsComputer OperationsComputer_Ops.R01Existence or Occurrence
Computer_OpsComputer OperationsComputer_Ops.R02Completeness
Computer_OpsComputer OperationsComputer_Ops.R03Valuation or Allocation
Computer_OpsComputer OperationsComputer_Ops.R04Rights or Obligation
Computer_OpsComputer OperationsComputer_Ops.R05Presentation and Disclosure

 

Thank you in advance for your ideas and suggestions.

2 REPLIES 2
DataNath
17 - Castor

Hey @tww, if you're wanting a copy of everything in table 2 next to your table 1 values then you can just append 2 to 1 like so:

 

DataNath_0-1680125077067.png

 

To create your third field, you'll just need to put fields 1 and 3 together, separated by a full stop like so:

 

DataNath_1-1680125114453.png

 

One thing to be careful of is appending - if one or both of your data sets are large then this will lead to a huge dataset and decreased performance as you're blowing up your data to A x B size where A and B are the number of records in your original tables.

 

If your second table is large you'll also need to change this option to either just warn or ignore and allow all appends:

 

DataNath_2-1680125238370.png

tww
8 - Asteroid

Thank you so much @DataNath 

Labels