Forum Discussion
PATDINIZ
Oct 16, 2023Copper Contributor
TRANSFORM MATRIX INTO TABLE
Good Morning. I took a table with distance data and it is in matrix format.
I want to turn it into a table.
There are 5,700 lines and 5,700 columns, in this format:
1100023 1100452 1100601 ...
1100023 0,0 144,5 69,1
1100452 145,0 0,0 203.1
1100940 125,0 262,5 187,1
...
I want it to stay like this
A B C
1100023 1100023 0,0
1100023 1100452 144,5
1100023 1100601 69,1
1100452 1100023 145,0
1100452 1100452 0,0
1100452 1100601 203.1
1100940 1100023 125,0
...
Can you help me? Thanks. Patricia
*Sorry for my bad English.
- olafhelperBronze Contributor
PATDINIZ , for this you can use the build-in function UNPIVOT, see