How to delete the row from datatable2 which has different value from datatable1

Hi @shailesh1920

you can do this in multiple ways. you can achieve using LINQ, if you are not much familiar with LINQ. you can achieve it using below steps

  1. Read both sheets and keep in 2 data tables
  2. loop for all values in sheet 1
  3. in loop use lookup data table activity provide service number of sheet 1 and check in sheet 2 is available or not.
  4. Based on the response you can delete in sheet 1 dt or create a new data table(dt) to capture the required data

Happy Automation!!!