Get only date

I am getting date out of Excel and filling it in a form. The problem i am having is that everytime the time 00:00:00 gets involved. But i only want de date. Now i tried to doe .ToString(“dd-mm-yy”) but then i get literally dd-mm-yy in my form.
Anybody can help me?

1 Like

@438654,

row(“ColumnName”).toString(“dd-MM-yyyy”)

1 Like

It says Implicit conversions from String to Integer are not allowed by the option strict on

@438654,

Could you please share your workflow file and will check it.

str.Replace(" 00:00:00", “”)
It will work

5 Likes

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