Hi, i am trying to convert column in table 1 to row in table 2.
Table1:
| Header1 | Header2 |
| AB | ABCD |
| AC | ACDE |
| AD | ADEF |
| AE | AEFG |
| AF | AFGH |
Table2:
| AB | AC | AD | AE | AF |
| ABCD | ACDE | ADEF | AEFG | AFGH |
Also, after i get the output of table2 i would like to find a matching row in another file with multiple rows of similar data.
Thanks for your help in advance.