
Announcements
Hi!
I am reading from a CSV file some dates. These dates are in the format dd-MM-YYYY. If i want to convert the string to a date i always fail.
For this i use
juergen contains
18/05/2020
Hi @guju ,
Please try the following expression:
formatDateTime(concat(split(variables('Test'),'/')[1],'/',split(variables('Test'),'/')[0],'/',split(variables('Test'),'/')[2]),'dd-MM-yyyy')
Best Regards,