Hi, I want to filter the excel column less than or equal to zero. How can I achieve this in excel itself.
Thanks
Do you mean remove the rows?
yes, to remove the rows
Hi @nagini.pragna ,
Hope you are doing well.
Please use below expression in Assign activity to filter the datatable for values less than 1
d1.asEnumerable.where(Function(x1) CInt(x1(“ColumnNameTobeFiltered”))<1).copyToDatatable
This expression will give a datatable with required rows. Let me know if you need any workflow.
Load the sheet into a datatable with Read Range then use Filter Datatable to remove the rows, then write back to Excel with Write Range.
Hi
Did we try with a simple method of using FILTER DATATABLE activity
https://docs.uipath.com/activities/docs/filter-data-table
Cheers @nagini.pragna
Thanks For the reply, I tried using macros and it is working fine.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.