How to use a list to select rows with an specific value
Hi I am trying to use a list of Names that populate a column to select the matching rows of another column (in another Table) in order to subset the table and generate several different subsets.Getting the Names/Values from the first column is no problem but I cannot find the correct syntax for the loop.dt4 = Current Data Table();
uniqueVals = {"2021_file1_T1", "2021_file1_T2"};
tableList= {};
F
...