How to filter column which is filled with False init with .Select and copytodatatable

how to filter column which is filled with False init with .Select and copytodatatable

ExtractDataTable.Select(“[Column Name]=’False’”).copytoDatatable

Hi @ryava_santhoshi,

Datatable.select(" ColumnName=‘False’ ").copytoDatatable

Please try this.

Thanks!

i tried both before…those are not working…is shud filter only FALSE values in that column.
please let me know any exact solution

Refer the below link

Pls refer this example,

select_query.zip (8.1 KB)

thank you all

declare a data table variable for example newDataTable
Use assign activity newDataTable = existingDataTable.Select(“ColumnName=‘FALSE’”).CopyToDataTable()

If column name contains any spaces then mention as [column name]
Take care of case sensitivity of FALSE.

Hope this will help you

Regards,
Pathrudu