-
|
I have CSV files with data like this:
Now I would like to extract/transform this into a table with only two columns:
where NAME contains all cells under SenderName and ReceiverName and ADDRESS contains everything under SenderAddress and ReceiverAddress. Is there an easy way to do this in |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Hi @halloleo, I think for what you want, the easiest way is to make derived columns like e.g. You could also look into |
Beta Was this translation helpful? Give feedback.
Hi @halloleo, I think for what you want, the easiest way is to make derived columns like e.g.
=' '.join(SenderName, ReceiverName)orSenderName + '\n' + ReceiverName.You could also look into
gM("big melt") which takes a regex to parse the column headings, and then would produce 2 rows per initial row, one for the Sender and one for the Receiver, with a new column to distinguish between them.