The activity does not show the ‘Configure Filter’ button or any input fields for conditions in the Properties Panel, even after updating the UiPath.System.Activities
package to the latest version. please find the attached screenshot. I am watching automation developer course in that they are getting the configure filter button, I want to filter where column is department and value is marketing
Your ui path versions uses morden filter data table, which is no longer has the “configure filter ui” so button will nwver appear, even after updating packages
You can also try this Write filter manually in filterRowsMode
dtReport= dt_report.asEnumerable().Where(Function(r) r(“Dept”).ToString=“marketing”).CopyToDataTable()
You Have to install and use:
UiPath.DataTable.Activities->filter data table (classic)
Hi @AEMBOT,
Seems some bug with package, can you try to degrade to a lower version and check. also try removing and adding back the dependenacy.It works fine for me.
Alternately, you can use linq
dt_Output = dt_Report.Select(“Department = ‘Markting’”).CopyToDataTable()
Hi @AEMBOT
For us it is showing the Configure datatable option in the Filter datatable activity. I am also using the same system.activities package.
Try to reinstall the Studio, it may a glitch in Studio.
Check the below screenshot for your reference,
Hope it helps!!
hey @mkankatala can you confirm which studio version you using?
I have done the uninstalling the studio and again reinstall it and open the project directory again where my main.xaml file was present but while dragging the same filter data table part it shows the same UI


