Help with Sum in DT based on Long date

Hi @sallegae

Use the below vb code in Invoke code activity to change the date style to MM/dd/yyyy

For Each row As Datarow In dt.asenumerable
row("Datum") = DateTime.ParseExact(row("Datum").ToString, "MM/dd/yyyy HH:mm:ss", System.Globalization.CultureInfo.InvariantCulture).ToString("MM/dd/yyyy")
Next

Hope it helps!!