Extract DataTable but use string manipulation on one of the columns

Hi,

I have extracted my data into a DataTable.

Now i want to filter the table accordingly to the date in column A. The problem is that the data is presented like “16.08.2019 02:15”, and i need it as “16.08.2019”

How can i make every row in my DataTable convert into this custom string/date?

Use For each row
in that Assign Row(“Date”)=Row(“Date”).Tostring.split(" "c)(0)

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.