Date Time Transformation in Number

0
Good morning everyone, how do I transform a date and time into a number in Mendix?
asked
3 answers
1

Count seconds between Epoch an now to get the Unix-timestamp:

toString(secondsBetween([%CurrentDateTime%], dateTime(1970,1,1)))

Dates before 1970: prefix with ‘-’

answered
0

What`s your purpose?  One possible way is to take the difference from a  constant date like 01.01.001

answered
0

The CommunityCommons module has a DateTimeToLong java action you could use.

answered