Hello, I want to split the following table:
| Type | Data |
A | 123456 |
| A | 4535435 |
| A | 343242 |
| B | 988798797 |
| B | 87876 |
| B | 713123 |
| C | 23424 |
| C | 32432 |
Into the following 3 tables:
However, I could have more than 3 types. I want this to be dynamic/automatized for the number of types that I have.
I want to output to tables "in memory" that I can then use in other tools, and not to files.
How could I do it? Thank you!