I want to remove all the rows in my data table which contains “0” or “blank” cell in a column.
Thanks in advance.
Use Filter Datatable activity
In that use condition as ColumnName= “”
or
ColumnName=“0”
And use Remove option
You can use the Filter DataTable activity to filter out the values that are 0
https://docs.uipath.com/activities/docs/filter-data-table
- use a read range acitivity to read the data to a datatable
- next use this activity to filter out the unwanted rows.
1 Like
Thanks a lot for the help
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.