The recommended date format type to use for sorting dates is the M column type. The support for M type date sorting is built-in including multiple language support and does not require any additional server installation.
In the macro browser, search for the Table Plus macro and find the Column types parameter. If M is listed in the help text, then it is available for use. See Column types for more information. |
Advanced date sorting support with the M column type is provided using Javascript implemented by the Table Library for Bob Swift Apps with the help of the Moment.js library (open source, MIT license). A summary of the relevant parts of the Moment.js documentation is repeated here. |
On specifying just the M column type, default date parsing recognizes a number of common date formats including those recognized by the browser specific Javascript implementation. However, there can be browser specific inconsistencies. The following ISO-8601 formats are recognized consistently across browsers:
ISO-8601 Format YYYY-MM-DD YYYY-MM-DDTHH YYYY-MM-DD HH YYYY-MM-DDTHH:mm YYYY-MM-DD HH:mm YYYY-MM-DDTHH:mm:ss YYYY-MM-DD HH:mm:ss YYYY-MM-DDTHH:mm:ss.SSS YYYY-MM-DD HH:mm:ss.SSS YYYY-MM-DDTHH:mm:ss Z YYYY-MM-DD HH:mm:ss Z |
On specifying a format string following the M column type, a specific date format can be handled. Construct the date format string from the set of format tokens.
Non-alphanumeric characters are ignored, so, for this example, both of the following are treated the same with the MM-DD-YYYY format:
Similarly, formats can be specified with or with non-alphanumeric separators. However, using separators helps with readability. |
See the Moment.js documentation for further information. |
Token | Description | |
---|---|---|
M, MM | Month Number (1 - 12) | |
MMM, MMMM | Month Name (In current language) | |
D, DD | Day of month | |
DDD, DDDD | Day of year | |
d, dd, ddd, dddd | Day of week
| |
YY | 2 digit year (if greater than 68, returns 1900's; else, 2000's) | |
YYYY | 4 digit year | |
a, A | AM/PM | |
H, HH | 24 hour time | |
h, hh | 12 hour time (use in conjunction with a or A) | |
m, mm | Minutes | |
s, ss | Seconds | |
S | Deciseconds (1/10th of a second) | |
SS | Centiseconds (1/100th of a second) | |
SSS | Milliseconds (1/1000th of a second) | |
Z, ZZ | Timezone offset as +07:00 or +0700 | |
X | Unix timestamp |
When the date format contains any other language words, the appropriate language must be indicated. English (US) is the default if nothing is specified. The language is specified by following the M with (language indicator) prior to the format string.
Click the link, in the following list of languages supported by the Moment.js library, to get the details of the specific localization:
Language indicator |
---|
ar-ma |
ar |
bg |
br |
ca |
cs |
cv |
da |
de |
el |
en-ca |
en-gb |
eo |
es |
et |
eu |
fa |
fi |
fr-ca |
fr |
gl |
he |
hi |
hu |
id |
is |
it |
ja |
ka |
ko |
lv |
ms-my |
nb |
ne |
nl |
nn |
pl |
pt-br |
pt |
ro |
ru |
sk |
sl |
sq |
sv |
th |
tr |
tzm-la |
tzm |
uk |
zh-cn |
zh-tw |