i need to check how many "no values are there in "Matching/not matching column.
so i am using filter activity , initially i used filter data table activity(classic).
so just tell me how to use this new filter , how to write condition
Hi @Mathkar_kunal
You can use linq , use assign activity
Place this ,
(From row In yourDataTable.AsEnumerable()
Where row(“YourColumnName”).ToString.Trim.Equals(“No”)
Select row).Count() > 1
Or else use filter datatable activity you can pass input and output strings with desired output you can use output datatable activity.