Filter Data from datatable

Hi,
I extracted data (ExtractDataTable) and i want to filter the record based on some condition like
Status=open and Description=“Calculate client” date should not greater than 1st feb 2018
then how should i do.

@Rup_1 Refer this

Filter Date - #2 by indra

Hi @Rup_1,

Use below code
ExtractDataTable=ExtractDataTable.select("Status='open' and Description='Calculate client'").CopyToDataTable()

Regards,
Arivu

1 Like