Hi!Is there a way to automate the creation of a subset table such that this is the starting data table
And this is the subset table (the final row of each group)
Any help appreciated! Thanks!
Go to Solution
I can see several ways to do this with JSL. Try this:
Names Default To Here( 1 ); dt = Current Data Table(); dt << Subset( Selected Columns( 0 ), Rows( dt << Get rows where( Col Max( Row(), :Group ) == Row()) ) );
View solution in original post