Filter datatable from csv on date >= Today

@Luke69

Welcome to the community

You can use linq expression liek this in assign

Dt = dt.AsEnumerable.Where(function(x) Cdate(x("Date").ToString)>Today).CopyToDatatable

Now your table will have only the filtered rows

Cheers

1 Like