I have a table that looks like this:
Column A | Column B
10 | 0.1
10 | 0.2
10 | 0.3
20 | 0.4
20 | 0.5
20 | 0.6
I need to transpose it to look like this:
10 | 20
0.1 | 0.4
0.2 | 0.5
0.3 | 0.6
Almost 2k different values in Column A, for each one there is exactly 1k values in column B, which might repeat.
Is there an automated way of doing this?