I have two sets of data which have a common field but also a unique item which I would like to combine into one data set.
EG.
Branch A has: Branch B has:
Item# Qty Item # Qty
1 2 1 3
2 5 2 4
3 6 4 8
which I would like to combine into the following:
Item# Qty.A Qty.B
1 2 3
2 5 4
3 6
4 8
So their could be unique items in both sets.
Is there a function for doing this?
Ultimately I want to create a macro that can import two text files (variable number of rows) and combine them.
Thanks.
EG.
Branch A has: Branch B has:
Item# Qty Item # Qty
1 2 1 3
2 5 2 4
3 6 4 8
which I would like to combine into the following:
Item# Qty.A Qty.B
1 2 3
2 5 4
3 6
4 8
So their could be unique items in both sets.
Is there a function for doing this?
Ultimately I want to create a macro that can import two text files (variable number of rows) and combine them.
Thanks.