How do I write a list to a column in a new data table?
I'm trying to extract a list of elements from a column that satisfies a condition. I'd like to write this list to a data table with the same column name so I can keep track of my rows. I'd like to keep appending to this list with time. For example: p = :col_name[condition << get selected rows];
I want to write this list to a table with the same column name and append to this table. Thanks.