Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
UI Text Box
sizemedium
typeinfo

Use case

Return the ICE score for an issue, given three number custom fields for Impact, Confidence and Ease.

Expression

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

Code Block
linenumberstrue
(issue?.customfield_IIIII || 0) * (issue?.customfield_CCCCC || 0) * (issue?.customfield_EEEEE || 0)
UI Text Box

Replace the IDs with the ones of your number custom fields Impact (IIIII), Confidence (CCCCC) and Ease (EEEEE).


Page properties
hiddentrue
Feature

Field typeSmart number field
Built-in


Parsing mode

Jira expression

Expression
Code Block
linenumberstrue
(issue?.customfield_IIIII || 0) * (issue?.customfield_CCCCC || 0) * (issue?.customfield_EEEEE || 0)
UI Text Box

Replace the IDs with the ones of your number custom fields Impact (IIIII), Confidence (CCCCC) and Ease (EEEEE).

Label
Use case description

Return the ICE score for an issue.

Complexity

Status
colourGreen
titleBeginner