I have data in a format similar to this:
I have been able to put A, B, and C under a new column named "Entity" and D, E, and F under a new column named "Description", but I am having trouble putting all of the values into their own column. This is what my expected outcome is:
| Entity | Description | Amount |
| A | D | # |
| B | D | # |
| C | D | # |
| A | E | # |
| B | E | # |
| C | E | # |
| A | F | # |
| B | F | # |
| C | F | # |
Any help is very much appreciated!