How to create a report to display tasks with zero remaining hours for either the logged-in user or for individual users in Reports and Timesheets for Jira app
This article helps you to display a report having issues with zero remaining hours for either the logged-in user or for individual users in tabular view.
Instructions
Create a report to display tasks with zero remaining hours for the logged-in user:
Select view type as List.
Add fields Current Assignee: Name, Issue Key and summary, Time Entry: Logged time, Original estimate.
Make sure the aggregate of the Original estimate is None as shown in the below screenshot.
Write JQL as
remainingEstimate = 0 and worklogdate >= '2023-07-01' and assignee in (currentuser())
Run the report.
It displays the result for the currently logged-in user.
Create a report to display tasks with zero remaining hours for individual users:
Select view type as List.
Add fields Time Entry: User, Issue Key, and summary, Time Entry: Logged time, Original estimate.
Apply filter to Time Entry: User as required. Here User is “Priyal Jaiswal”.
Write a JQL:
remainingEstimate = 0 and worklogdate >= '2023-07-01'
Make sure the aggregate of the Original estimate is None as shown in the below screenshot.
Run the report.
It now displays the result for the individual user - “Priyal Jaiswal”.
Make changes in JQL or fields as per specific requirements.