Alteryx Designer Desktop Discussions

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

how do you properly append columns from multiple tables

codyfawcett
6 - Meteoroid

I'm having an issue with performing this action.  im using an rvtools report from vcenter, that exports a very similare excel file with multiple sheets as the tables.  I am fairly new to data manipulation like this, and normally just look at the sheets, but im looking to combine this data with other info from puppet, and cmdb, etc...

When i try this with unions or joins, etc... I usually end up with 42 rows with 8 columns.  What would be the proper way to actually append the columns to the existing data. without all the blank cells?

 

Any thoughts?

 

 

Table1
recordidnameipcpumemory
1name1192.168.1.248192
2name2192.168.1.384096
3name3192.168.1.448192
4name4192.168.1.544096
5name5192.168.1.668192
6name6192.168.1.744096
7name7192.168.1.848192
8name8192.168.1.944096
9name9192.168.1.10128192
10name10192.168.1.1144096
11name11192.168.1.12168192
12name12192.168.1.1344096
13name13192.168.1.1448192
14name14192.168.1.1544096

 

Table2
recordidnameipnichost
1name1192.168.1.21host1
2name2192.168.1.31host1
3name3192.168.1.41host1
4name4192.168.1.51host4
5name5192.168.1.61host3
6name6192.168.1.72host5
7name7192.168.1.81host4
8name8192.168.1.91host2
9name9192.168.1.101host2
10name10192.168.1.111host3
11name11192.168.1.124host6
12name12192.168.1.131host4
13name13192.168.1.141host5
14name14192.168.1.151host1

 

Table3
recordidnameipospowerstate
1name1192.168.1.2windows 2008poweredoff
2name2192.168.1.3rhel 7.6poweredon
3name3192.168.1.4windows 2012poweredon
4name4192.168.1.5windows 2016 
5name5192.168.1.6windows 2012poweredon
6name6192.168.1.7windows 2012poweredoff
7name7192.168.1.8 poweredoff
8name8192.168.1.9windows 2016poweredon
9name9192.168.1.10windows 2016poweredon
10name10192.168.1.11windows 2016poweredon
11name11192.168.1.12rhel 7.4poweredon
12name12192.168.1.13rhel 7.4poweredon
13name13192.168.1.14windows 2016poweredon
14name14192.168.1.15windows 2016poweredon

 

 

output table
recordidnameipcpumemorynichostospowerstate
1name1192.168.1.2481921host1windows 2008poweredoff
2name2192.168.1.3840961host1rhel 7.6poweredon
3name3192.168.1.4481921host1windows 2012poweredon
4name4192.168.1.5440961host4windows 2016 
5name5192.168.1.6681921host3windows 2012poweredon
6name6192.168.1.7440962host5windows 2012poweredoff
7name7192.168.1.8481921host4 poweredoff
8name8192.168.1.9440961host2windows 2016poweredon
9name9192.168.1.101281921host2windows 2016poweredon
10name10192.168.1.11440961host3windows 2016poweredon
11name11192.168.1.121681924host6rhel 7.4poweredon
12name12192.168.1.13440961host4rhel 7.4poweredon
13name13192.168.1.14481921host5windows 2016poweredon
14name14192.168.1.15440961host1windows 2016poweredon
3 REPLIES 3
ponraj
13 - Pulsar

Multijoin tool will help you to get the desired output. It has also select tool functionalities which will help you to remove the unwanted fields. 

 

workflow.PNG

DanielDRU
5 - Atom

Hi,

 

is it also possible to define the input of the Join Multiple operator as the various sheets of a excel file?

 

Regards

Daniel

ponraj
13 - Pulsar

Yes, this is very much possible. We can join data from multiple excel sheets using Join multiple tool. 

Labels