Looking to automate a process and coming at problem from two methods, looking for guidance:
Hi all, I'm running a script that takes a column from a data table and summarises it like so:names default to here(1);
dt = Current Data Table();
fails = dt << Summary(Group( :Test_Name ),Freq( "None" ),Weight( "None" ),Output Table( "Tests that have Failed" ));
The general method in our process is to select a row in the table created:There can be any number of rows in this first summary table sho...