Some of the pack formulas return a list of comma delimited results. I have found it useful to have a a way to insert these into a table and here is how we go about doing it -
I am using the Stock pack as an example here.
Stocks::News() returns a comma delimited list of rows.
I created a table called Unpack and a button.
The button uses formulamap() and AddOrModifyRows to insert new results into the table.
@Joseph_B - Try first splitting the string ( “Apple, Peach, Orange”) to a list and then working off that. Right now it is a string and not a list.
So, Split(“Apple, Peach, Orange”,",") will give you a list with Apple, Peach and Orange in it.