This function returns a number list with all the values that a numeric or date-time field has ever had in the past for current issue.

Values appear in the list in ascending ordered by setting time, i.e., older value has index 1, and most recent value has index count(numberList) . Uninitialized field statuses are not represented.

Syntax
fieldHistory(numberField) #Output: Number list
Examples
Parser expressionDescription
fieldHistory({issue.dueDate})

This example returns:

A list of all due dates that every have been set in the current issue.

Additional information

Parameters used in this function

ParameterInput (data type)Description
numberField

TEXT

Any given numeric field code.
Output

This function returns a NUMBER LIST


Variant for text fields.

Syntax
fieldHistory(textField) #Output: Text list
Examples
Parser expressionDescription
fieldHistory(%{issue.summary})

This example returns:

A list of all summaries that every have been set in the current issue.

Additional information

Parameters used in this function

ParameterInput (data type)Description
textField

TEXT

Any given text field code.
Output

This function returns a TEXT LIST


Use cases and examples