Inconsistency between number of Completed Issues in the Epic Report and Issue Navigator

Still need help?

The Atlassian Community is here for you.

Ask the community

 

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

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

 

 

Last modified on Nov 2, 2018

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.