Hello,
The data in the source looks like this:
Col1 | Col2 | Col3
1 | XYZ | Value1
2 | XYZ | Value2
3 | XYZ | Value3
4 | ABC | Value4
5 | ABC | Value5
There is a requirement to display the Col3 Object as a concatination of values per Col2. Which means that data should appear like this:
Col2 | Col3
XYZ | Value1/Value2/Value3
ABC | Value4/Value5
The problem is the number of values per Col2 is indefinite. There can be 2, 3, 5, 7, or any number of values; so a Case/When/Then statement will not do the trick
Any ideas on how I can design the Col3 object?
Thank you
dideb (BOB member since 2005-07-05)