How to remove excel rows have list of emails

Hi,
I have one excel file one email column is available. i remove list of email row ex(abc@123.com,xyz@123.com).

Hey @MD_Farhan1
If you have a list of email addresses you can easily do it in UiPath - just read your Excel file into a DataTable, then use a Filter Data Table activity with option remove for each element of list.
You can also use Assign with LINQ to exclude rows where the email column matches any email from your list.
dt1.AsEnumerable().Where(Function(row) Not emailList.Contains(row("Email").ToString)).CopyToDataTable()

Here, you can find example:
BlankProcess23.zip (146.6 KB)