Reputation: 851
I have a two column, n row table in this format:
1 | Apple
2 | Orange
3 | Fruit
4 | Car
I need to reformat all of the data into one row like so:
1 | Apple | 2 | Orange | 3 | Fruit | 4 |Car
I am aware of Paste Special using Transpose, but that still gives me a row for each column.
What would be the best approach to this?
Upvotes: 1
Views: 2557