Hi,
- Read the daily Sheet provided – 3 Records(.i.e Id,Name,Place)
- Read the Master Sheet provided – 10 Records (.i.e Id,Name,Place)
- Delete the records from the Master sheet, if they are available in the daily sheet.
Input File:
Master File:
Hi,
HI,
How about the following? We can use Except method, in this case.
dtMaster.AsEnumerable.Except(dtInput.AsEnumerable,DataRowComparer.Default).CopyToDataTable
Sample20221130-5.zip (9.3 KB)
Regards,
@sankar.mayilsamy Check this attached workflow below,
Sankar_ExcelComparison.zip (16.0 KB)
Hope this may help you