Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: R4JC-5258

Overview

Requirements Management for Jira Cloud provides you the option to choose what formula to use when computing the coverage statistics in the coverage view.

The Jira administrator can change the formula by going to the R4J section at Apps > Manage your apps > Configuration in the R4J section (see also Configuration).

Changing the formula affects all saved coverage views of all projects.

Table of Contents

Calculation options

Name

Description

Issue based Calculation

Completeness is calculated based on the not covered issues from previous column divided by the total issues from previous column.

See formula below:

Code Block
a = number of ISSUES in PREVIOUS column
b = number of ISSUES in PREVIOUS column NOT COVERED in CURRENT column
coverage = (a - b) / a * 100
Info

Default formula used in coverage completeness.

Row based Calculation

Completeness is calculated based on the not covered rows from previous column divided by the total rows from previous column.

See formula below:

Code Block
 a = TOTAL number of ROWS in PREVIOUS column
 b = number of ROWS NOT COVERED in CURRENT column
 coverage = (a - b) / a * 100