Skip to main content

Examples

  • {TIME;@DD/MM/YY}
    e.g. “28/08/22”
  • {DAYOFMONTH}/{MONTH}/{YEAROFCENTURY}
    same as above but with direct formatting
  • {HOUR}:{MINUTE}
    e.g. 21:45
  • {TIME;{HOUR12}{AMPM}}
    e.g. 09:45PM
  • {TIME;{HOUR12}{AMPM;FORMAT={ a.m.; p.m.}}}
    same as above but with “ p.m.” instead of “PM”, e.g. “09:45 p.m.”
  • {MONTH;FORMAT=shortmonth}
    e.g. “AUG”.
  • {TIME;{MONTH;FORMAT=shortmonth};+6weeks}
    The monthname six weeks from now, e.g. “OCT”.
  • {TIME;@YYYY-MM-DD;+3months-1week}
    Current time plus three months minus one week. If today is 2022-08-28, the result is “2022-09-21”.
  • {TIME;{MONTH;FORMAT={A;B;C;D;E;F;G;H;J;K;L;M}}}
    Current month expressed as A-M (A for January through M for December) If today is 2022-08-28, the result is “J”.