So I have a row:
--------------------
| A | B | C | D |
-------|------|---|---|---|
| row1 | test | 1 | 2 | 3 |
and from that row I would like to produce the following:
------------
| A | B |
-------|------|---|
| row1 | test | 1 |
-------|------|---|
| row2 | test | 2 |
-------|------|---|
| row3 | test | 3 |
Are there any built in functions that might be able to handle this?