Paste copy value in format "dd.MM.yyyy"

How to copy a table with the following dates
image
and paste it into the following format
image

Hi @teslyak9437

Try this

DT.AsEnumerable.ToList.ForEach(Sub(r)
    r(0)=r(0).ToString.Split(" "c).First()
End Sub
)

Output:

image

Cheers!!

how to implement it on StudioX

@teslyak9437,

Don’t need to copy paste the date. You can use Format Cells activity like this in StudioX

File Before Run:

Output:

Thanks,
Ashok :slight_smile:

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