Versions Compared

Key

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

About

The Calculated Field is a custom field (implemented with Atlassian Forge) which allows you to perform automatic calculations on numerical fields.

Adding the field to the screens

  1. Navigate to Issues > Custom Fields.
  2. Locate the field named as Calculated Field (Stiltsoft).
  3. Click [...] and select Associate to Screens.
  4. Click Update.

...

The field will calculate the values based on numerical values from other values. Use the field aliases from the Variable name column in your formulas and expression.

Quick recipes

Info

Need something specific? Please reach us at tech-support@stiltsoft.com.

Calculating the ICE score

...

  1. Add the Reach, Impact, Confidence and Ease numerical field onto the issue layout.
  2. In the calculated field, enter the following formula:
Code Block
const rice = reach * impact * confidence / efforts;
round(rice, 1);

Calculating the ratio of logged time to estimates

...