Alteryx Designer Desktop Discussions

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

Joining two data set

BihaniBhavesh
5 - Atom

Hello, I'm looking for solutions where joining two table data based on id would provide output next to each other .. displayed in the below fashion:

 

Note : I've tried joining based on the record position, unfortunately results are not similar. And cartesian rows are returned while we perform multi-join by specific field.

 

Output table :

idAttribute-1Attribute-2Attribute-3
11Catpale yellowUK
11dogbrownIndia
12Ratblack 
14horsewhiteUSA
14cowbrownIndia
14cat  

 

Using the information from three table :

 

Table-1

idAttribute-1
11Cat
11dog
12Rat
14horse
14cow
14cat

 

Table-2 :

idAttribute-2
11pale yellow
11brown
12black
14white
14brown

 

table-3 :

idAttribute-3
11UK
11India
14USA
14India
3 REPLIES 3
Christina_H
14 - Magnetar

Use tile tools to label the rows for each ID, giving you something to join on.

Christina_H_0-1685091455119.png

 

SeanAdams
17 - Castor
17 - Castor

Hey @BihaniBhavesh - given that they all share the same key - I'd use the Multi-join - that way you can do this all in one too.

 

 

wwatson
12 - Quasar

@BihaniBhavesh Your IDs are not unique in the attribute tables so are many to many rather than one to one. However as @SeanAdams says a mutli-join tool would be the way to join these tables.

Labels