Right now I found a solution but if anyone knows a better way I would be the happiest person ever!
This is what I've found to work.
I have original table,
dt_RMAs =
|
stool | 1 | 45.00 | Product |
book | 5 | 32.99 | Cust issue |
laptop | 1 | 439.99 | Product |
dinner | 1 | 12.99 | Cust issue |
clock | 3 | 24.00 | Broken by shipping |
I make a temp data table like so,
dt_Temp =
Now I run this after those two tables are assigned to their variables,
dt_SubsetOfRMAsBy_ProductFailure = dt_RMAs << Join(
With( dt_Temp ),
By Matching Columns( :failure = :failure ),
Drop multiples( 0,0 ),
Name( "Include non-matches" ) ( 0,0 ),
Preserve main table order( 1 ),
Output Table( "RMAs because of PRODUCT FAILURE" )
);
Now I have an immediate issue with the name of the failure column.
Does anyone know a better way?
Thanks everyone,
Sincerely,
Loysius