I want to remove specific row values.
hi @ajkv,
you can use Remove Data Row activity
using row index or row object you can do
Regards,
Arivu
2 Likes
To delete rows from datatable, you could use the logic mentioned below -
Use the select function on the datatable to filter the rows that match your condition and this will return an array of Datarows. Then use a for each loop and remove each row from the Array of Datarows using datatable.Rows.Remove(row);
2 Likes
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.