To do this interactively, go to the area at the top of the Row State column(the column that has the row numbers). Right click and select
Row Selection+>Select Where
sel1.PNG
Then in the dialog that is opened, specify to find rows where Label Contains "Rpp"
sel2.PNG
It will then select the rows you want
sel3.PNG
Now go to
Tables=>Subset
The Subset dialog window will open. Specify to only subset Selected Rows, and all columns
sel4.PNG
It will then create the new table you want
sel5.PNG
Repeat the same process for your Wig_350 subset you want.
If you want to do this using JSL, the below will do the same
Names Default To Here( 1 );
dt = Current Data Table();
dt << select where( Contains( :label, "Rpp" ) == 1 );
dt << subset( selected rows( 1 ), selected columns( 0 ) );
dt << select where( Contains( :label, "Wig_350" ) == 1 );
Jim