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

Compare with Current View Page History

« Previous Version 3 Next »

Use case

Return the result of summing the multiplication of the field values of two Number fields in every sub-task of the current issue.

Expression

Create and configure a Smart field using this expression in Jira expression mode:

ExpressionDescription
 issue.subtasks.length && issue.subtasks.map( s => (s.customfield_nnnnn || 0) * (s.customfield_ppppp || 0)).reduce((a, b) => a + b)

Please, replace nnnnn and ppppp in the above expression with the IDs of the Number fields.

This example returns the result of summing the multiplication of the field values of two Number fields in every sub-task of the current issue.