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?
vlookup, but it finds only the last value of column B for each value of column A – RSFalcon7 Aug 16 '18 at 13:38Power Query,PQcan handle about 1GB of data in the 32-bit version; much more in the 64-bit version. – Ron Rosenfeld Aug 16 '18 at 21:54