CurrentTime to Integer

1
How to turn the current time to a integer
asked
2 answers
2

parseInteger(formatDateTime([%CurrentDateTime%],'ddMMyyyy'))

answered
2

Take a look at the dateTimeToEpoch function. This will give you the number of milliseconds since January 1st 00:00:00 GMT.

https://docs.mendix.com/refguide/parse-and-format-date-function-calls#6-datetimetoepoch

answered