JSL split function keep column name in header when splitting a single column
Hi all,
I have a section of jsl code which takes my data table and splits a variable amount of columns (code attached below).
//Variable Table splitting operation
dt_split = new << Split(
Split By( :SamplePos, :File ID ),
Split( Eval List( EmitCols ) ), //Here is the line where I choose a variable amount of columns within the data table to split
Group(:Cycles),
Output Table( "Split_Table" ),
R...
vince_faller