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
- Navigate to Issues > Custom Fields.
- Locate the field named as Calculated Field (Stiltsoft).
- Click [...] and select Associate to Screens.
- 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
...
- Add the Reach, Impact, Confidence and Ease numerical field onto the issue layout.
- 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
...