Okay, I want to filter a datatable with the Select method, the condition I want to put inside is that it filters values that are >= to my value how do I express that?
Hi @Christopher_Gomez,
Use datatable.select(your condition)
You can use like this
table.Select(“Size >= 230 AND Sex = ‘m’”)
Dt.select("amount>=5000").CopyToDataTable()
Refer more in below post
DataTable filtering with expressions
Regards,
Arivu
Datatable.Select(“[ColName]>=Value”).CopyToDataTable
Thanks, for the help @Naveen_tg, @aman_sheik, @arivu96, @amaresan
I already solve the problem.
This is the expression I used
Datatable.Select(“NOT [columname]<17500”).CopyToDataTable
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.