Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Remove rows by matching column sno in Table A and column sno in Table B and remove the duplicates
TableA:LOADsno,qty As A.qty,"date" As A.DateFROM [lib://DataFiles/TableA.xlsx](ooxml, embedded labels, table is Sheet1);
Join (TableA)
// TableB:LOADsno,qty As B.qty,"date" As B.DateFROM [lib://DataFiles/TableB.xlsx](ooxml, embedded labels, table is Sheet1);
Table:Load sno,RangeSum(B.qty)-RangeSum(A.qty) As qty,A.Date,B.DateResident TableA;Drop Table TableA;