The Date values are entered and displayed using your Windows regional settings. So if you're in US, today is "01/04/2024"; in Germany it might be "04.01.2024". Time is optional - you can enter "01/04/2024 16:23" or just "01/04/2024" (in effect, the 00:00:00 timestamp is not displayed).
Internally, the date is stored using the exact same date format as Excel, as the number of days since Dec 31 1899 (or as Excel puts it, January zeroth 1900
), with the fractional part representing the time. You can play with this in Excel by entering a date/time and then formatting the cell as Number or General. You can display and use this internal value in MC's Expression Language with [fieldName, 0]. There are
expression functions to convert between the internal and display formats, to parse dates, do date math, etc. You can use an expression to display Date fields in whatever format you like.
Examples (US format):
01/04/2024 = 45295
01/04/2024 18:10:00 = 45295.7569444444
45678.123 = 01/21/2025 02:57:07
You don't need to concern yourself with any of this if you just want to use dates in your local format. Just enter them as you're used to, and that's how you'll see them.