Hi All,
I currently have a data set that looks like this:
| Group | Column A | Column B | Column C |
A | Blue | Black | Red |
A | Green | Black | Red |
| B | Green | Black | Red |
| B | Yellow | Blue | Red |
| B | Red | Black | Red |
| C | Yellow | Blue | Red |
| C | Yellow | Blue | Black |
Is it possible to group this table using the column 'Group' and have each 'Group' appear next to each other (side-by-side) rather than one after another? Like below:
| A | A | A | B | B | B | C | C | C |
| Column A | Column B | Column C | Column A | Column B | Column C | Column A | Column B | Column C |
| Blue | Black | Red | Green | Black | Red | Yellow | Blue | Red |
| Green | Black | Red | Yellow | Blue | Red | Yellow | Blue | Black |