Change date format

0
I am new to the Mendix so can someone help me in my query I want to change the date and time format in dd/MM/yyyy in my microflow where the member selected from domain model is in datatype date and time. The current date and time is in yyyy/MM/dd.
asked
1 answers
0

Hey

You can refer to this, it gives an overview of all the datetime functions that can be used
https://docs.mendix.com/refguide/parse-and-format-date-function-calls/

For your case you can store the date by using formatDateTime($object/Date1,'dd/MM/yyyy')

answered