Hi, I have a dataset that looks like this:
Name ID1 ID2 ID3 ID4
A 1 2 3 4
B 5 6 7
C 8 9
D 10
I want to break out these Names by the different IDs, like so:
Name ID
A 1
A 2
A 3
A 4
B 5
B 6
B 7
C 8
C 9
D 10
How would I approach this in Magic ETL? Thank you.