FormatDateTime to 29/11/2009 23:33:59 (dd/MM/yyyy HH:mm:ss)

3
I want to format a DateTime (Mendix DateTime) in Microflow to format: 29/11/2009 23:33:59 (dd/MM/yyyy HH:mm:ss). I can't figure out in the expressions on the Wiki how I could do this. Anyone a clue?
asked
1 answers
3

Use this:

formatDateTime($object/Date1, 'dd/MM/yyyy HH:mm:ss')
answered