I have several rows of data that contains data in the following format.
123,
abc,
456,
def,
789,
What I would like to do is Concatenate them all together to get the result
123,abc,456,def,789,
I have a total of 100 rows like this that I am trying to concatenate. I have tried all sorts of...