How to place List values into the column
As a result of some manipulations I have a list of size of number of rows in my table.I want to create a new column and place these values into this colum.JSL reference says that this should work: dt = New Table( "My Data"); dt << New Column( "Last Name", Character, Values( {"Smith", "Jones", "Anderson"} ) ); IThe list that I want to put into that column is actually list of lists. If I do Eval(na...