You can use the below LINQ Expression to remove the rows which contains True in Is Disabled column.
Check the below steps,
→ Use the Read range workbook activity to read the excel and store in a datatable called dt.
→ Then use the assign activity to write the below LINQ Expression,
- Assign -> dt = dt.asenumerable().where(Function(row) Not(row("Is Disabled").toString.tolower.equals("true"))).Copytodatatable()
→ Then use the write range workbook activity to write the dt in the excel.
Hope it helps!!