Two new operators:

&SysDatePart(which_part) . Returns one of: month (1-12), day of month (1-31), day of week (1-7), year, day of year(1-366). "which_part" selects which part of the date to return.

&Select(count, N, item list...) . Given a list of 'count' items, return the Nth item in the list.

ex. &Select(5, 2, "a", "b", "c", "d", "e") = b
(because 'b' was the 2nd in the list of 5 items)