Based on the second datatable column “No.”, i want to filter the first datatable (based on column “Customer Code”).
If they are euqal I want that whole row of First datatable except column “Customer” and from the second datatable I want only column “Qty” values.
and then will write them to an excel sheet
Thanks!
→ Use read range workbook activity to read the first excel and store in a datatable variable called dt1.
→ Use another read range workbook activity to read the second excel and store in a datatable variable called dt2.
→ Use assign activity to create a output datatable called dtResult.
- Assign -> dtResult = New System.data.datatable()
→ Use another assign activity to write the linq expression,