I have three data, every data contain one column and the same rows but in diffrent orders in all the five data, i want to merge the five data based on the first column.
column1
X 7
B 5
Y 2
D 1
Z 0
column2
D 7
Z 5
X 2
Y 6
B 7
column3
Y 4
D 4
Z 8
B 7
X 2
The result i want is like this
column1 column2 column3
X 7 2 2
B 5 7 7
Y 2 6 4
D 1 7 4
Z 0 5 8
This can be easily done with the
mergefunction.This should give what you want.