Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
subtasks.priority.UMAX()

Returns the highest priority of the subtasks.

Find the subtask with the highest priority

Code Block
with highest_priority = subtasks.priority.UMAX(): subtasks.FILTER($.priority = highest_priority)

Returns all subtasks with the highest priority.

Compare two priorities

Code Block
IF(priority1.sequence > priority2.sequence)

...