Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: rboccuzziYou can do this a few ways,l depending on your particular problem.
Do you have an example of some data you have, and what you would want it to look like? Cause one issue to solve is, what do you want to have those columns called? If you are splitting the data, you have many values now, that need to go into columns. Is there a constant number of columns? Does the names of the columns come from the data? Or are they known? Or do you just want to name them Column1, Column2, etc. Is there a maximum number of columns known, even if the actual amount fluctuates?
You can do it manually, using the split function, or you can do it with a bit of work using the Expand From List and maybe a Pivot Data To Names or an Agg node. You would need to provide a unique id before you Expand From List to make sure you can aggregate back to the same rows, and then the next step really depends a lot on the answers to the above questions.