I'm trying to split a table by "Method", so each method becomes a new column, with the values associated. But I want to keep all the other columns, ID and Name.
Initial table:
Agustin_0-1587468541593.png
Desired split:
Agustin_1-1587468598511.png or
Agustin_2-1587468628834.png
Either of the formats pictured above would work for my purposes.
However using the split function:
Agustin_3-1587468670930.png
Which gives me wrong results:
Agustin_4-1587468686842.png
For example, ID = 3, B = 222 was done by Jon, not Alice. So the values for ID and Name don't always match the value in the method columns.
Is there a built-in way of achieving this? It appears to be a fault with the split function.
Thanks