Problem with filter data table

Hi all,
I am reading one excel file, which have numeric values in one column and using get text taking one numeric value(ex. EmpID) from web page.
using filter data table I want to filter out row which contains EmpID. but filter data table is not returning any row, Even though that EmpID is there in column.

Can someone suggest any solution?
Thanks in advance.

1 Like

Hey @197545

Kindly try this…

dt_Emp.AsEnumerable.Where(Function(row) row("EmpID").ToString.Equals(inputEmpID)).CopyToDatatable

Btw, the filter data table should also work fine.

Thanks
#nK

HI @197545

Can you check whether the get text output variable is returning some values?

Regards
Gokul