I have use read range and then filter number start with 678 but not getting output
1 Like
I have already check this but not working
In that case, could you check in the Debug Panel, how the value is represented in the Datatable ?
Please check the column type and jow thw value looks in locals panel…
Apart from that you can use linq
dt = Dt.AsEnumerable.Where(function(x) x("Number").ToString.StartsWith("678")).CopyToDataTable
Hope this helps
Cheers
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.