Hi all,
I have a table with four columns: the first column is an ID, and the next three columns contain values. I need to duplicate the rows for each ID based on the 3 value columns. For example, if only two columns have data, I need to duplicate it to two rows, with only one column has value.
The input is:
ID | Value#1 | Value#2 | Value#3 |
AAA | 10 | 20 | |
BBB | 20 | 30 |
The output is:
ID | Value#1 | Value#2 | Value#3 |
AAA | 10 | ||
AAA | 20 |
| |
BBB | 20 |
| |
BBB | 30 |
Thanks ahead!!!
Give this a try! What I did:
Step #1 - Transpose:
Step #3 - Multi-Row Formula:
Result:
@emmazyan another approach using tile tool
@binuacs - As I was working on mine, I said "I think the Tile Tool is going to be in someone else's answer" - I'm not great at it and need to spend some time figuring it out :)