how to convert current date time in dd-MM-yyyy format

0
I am retrieving the current date and time in microflow , and using that time to retrieve other data, but i need current date n time in dd-MM-yyyy format . How to convert it. 
asked
1 answers
0

Take a look at the formatDateTime function call. You need something like…
 

formatDateTime($object/MyDate, 'dd-MM-yyyy')

 

answered