Hello.
I have a table in Google Drive and I want to filter by a field called Limit, which is a date field (dd/mm/yyyy). Using “Filter data table” doesn’t filter correctly. Setting it as shown in the image gives me zero results, and it should give me data. Any ideas?
‘Limit’ field could be of type string, because of this date filter is not working.
You can use assign activity with below filter
(From x in DTCalc.AsEnumerable
Where Today > Datetime.ParseExact(x.Item("Limite").ToString, "dd/MM/yyyy", System.Globalization.CultureInfo.InvariantCulture)
).CopyToDataTable