Hi,
I'm looking at trying to manipulate some data in one table and add it to another. So my question is what is the best way to achieve this?
Here's the scenario:
Table has two columns A and B, where there can be multiple distinct values in column B per each distinct value in column A. e.g.
A B
1 i
1 ii
1 iii
2 I
2 II
I want to be able to combine this data into a new table in one column in the following format:
i (1)
ii (1)
iii (1)
I (2)
II (2)
Any help will be gratefully received.
Thanks
Mosser212