Forum Discussion
Concatenation from two different tables - Explanation Needed
Wish I could post a sample dataset...I cannot.
I am siply trying to combine the the value from one column in Table A with a column in Table B.
i.e.
Table A = Apple
Table B = 123456
New column equals "Apple 123456"
Appreciate your interest and advice.
Thanks,
Adam
Anonymous - We don't need actual data, just sample data that is representative of your data. Do you really have just a single column in your data tables? Is it at least in the same order for both? If it is, you might be able to add an Index column on import for both and relate them that way via the Index columns.
The issue I think that we are all struggling with is that you want to concatenate two values from two separate tables but I do not see anything in any of your posts that shows how these tables are related to one another. That is going to be a requirement for any solution, a way to say that "Apple" is related to "123456". If there is no way to relate these two things programmatically I don't see a solution unless you would manually create a relationship table but at that point, you would already have the solution in manually creating that table.