How to add data values to a table in a for loop using Select Columns Where to make a new overall data table of target data
For( date = date_array << First, !Is Empty( date ), date = date_array << Next( date ), //looping through date_array's keys is clunky but done this way in JMP
dt << Select Columns( :Timepoint, :Target Channel, :Run date ), Where(:Timepoint == date);
dt << Subset( ( Selected Rows ), Output Table Name( "Subset" ));
I wish to add, progressively, through each iteration of a for loop, data specifie...
);