Hi team,
I have Two sheet name as A and B
I have done Reconciliation from Both excel sheet and make one Recon excel sheet
Now i want to remove all the line items that have already been reconciled in Recon excel from A sheet
Could you please elaborate?
Do you want to append all sheets data in one and delete rest?
Now I want to Delete data from A Excel
I have to Compare Recon sheet and A excel sheet and delete data which is same in both sheet Deletion will work on A excel sheet
Any Answer?
Hi @Kuldeep_Pandey,
Read data from a sheet and delete from another sheet based on some conditions you can actually follow below steps:
- Use read range to read both excel sheet e.g. DT1 and DT2.
- Loop on DT1 to check DT2 has the same row or not
- If condition DT2.AsEnumerable.Any(Function(x) x(“columnInDT2”).ToString.Equals(CurrentRow(“columnInDT1”)) And …)
i) Do the steps to delete row from sheet A using Delete Range
Else:
Do the steps if row is not present in Sheet B.
please provide xml file