Inconsistency between number of Completed Issues in the Epic Report and Issue Navigator
Platform Notice: Server, Data Center, and Cloud By Request - This article was written for the Atlassian server and data center platforms but may also be useful for Atlassian Cloud customers. If completing instructions in this article would help you, please contact Atlassian Support and mention it.
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Problem
The Epic Report are not showing the right number of completed Issues compared to what being shown after clicked on the "View in Issue Navigator" of that report screen.
For example : In the Completed Issues section of the Epic Report, it would be showing less numbers of Completed Issues (eg:4).
However when user click on the "View in issue navigator" link of that Epic report , it will show more number of Completed Issues(eg:14)
Diagnosis
Environment
- JIRA 7
Diagnostic Steps
- Check and compare between the Board Filter and the Epic Report Filter (View in Issue Navigator) for the completed issue.
Cause
The Board Filter automatically filters out those tasks which is are not relevant to the current sprint.
Workaround
For example: The query Board Filter will includes a clause to limit the results to current sprint .
project = SUPP AND issuetype in (task, epic) AND (Sprint in openSprints() AND resolution = Unresolved) ORDER BY Rank ASC
After removed the "Sprint in openSprints() AND resolution = Unresolved" clause from the query, the user will be able to see correct number of completed Issues in the Epic Report.
project = SUPP AND issuetype in (task, epic) ORDER BY Rank ASC