You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Using append() with a number list

Append text lksandklnsakldnasasd function returns a NUMBER LIST with all numbers in arguments l and m. Duplicated numbers may appear in the output.

If you want to avoid repetition, use the function union(l,m).
Syntax
append(stringListl, stringList2) #Output: Number list
Examples
Parser expressionDescription
append([1, 2, 3], [3, 4, 5])

The function returns a NUMBER LIST: [1, 2, 3, 3, 4, 5]

append(fieldValue({00025}, linkedIssues("is blocked by")), fieldValue({00025}, subtasks()))

The function returns a NUMBER LIST with Total time Spent (in minutes) in blocking issues and sub-tasks. This number list can be summed using function sum().

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
Output

The function returns a NUMBER LIST

Using append() with a text list

The function returns a NUMBER LIST with all numbers in arguments l and m. Duplicated numbers may appear in the output.

If you want to avoid repetition, use the function union(l,m).
Syntax
append(number list l, number list m) #Output: Number list
Examples
Parser expressionDescription
append([1, 2, 3], [3, 4, 5])

The function returns a NUMBER LIST: [1, 2, 3, 3, 4, 5]

append(fieldValue({00025}, linkedIssues("is blocked by")), fieldValue({00025}, subtasks()))

The function returns a NUMBER LIST with Total time Spent (in minutes) in blocking issues and sub-tasks. This number list can be summed using function sum().

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
<parameter>

DATA TYPE

Parameter description.
Output

The function returns a NUMBER LIST