Hi everyone!
I need to create a report of Original Estimates given for tasks that are in an active state now, for each department we have in the company.
So, basically, I need to compare how many tasks overall we have and how many of them have original estimates.
Thank you in advance!
I'd start by going into the "Issue" screen for any Jira project you have, and click on "Go to advanced search".
There you can use JQL to make custom searches across all issues in any of the projects in Jira. For example, searching for:
originalEstimate is not empty and statusCategory = "In Progress"
will give a list of all issues, in all projects, which are "active" and have an Original Estimate value. Note, that will probably be a LOT of issues. There are limitations on how many issues can be returned, and how many will be shown.
Note that the number of issues will be displayed after each search. So that's "the number of issues which have original estimates".
To discover "how many issues you have overall", remove the "originalEstimate is not empty and" clause.
You can restrict the results to a specific set of projects by adding something like this:
project in (Playground,Mykenna) and ...
In the resulting list of issues, you can use the "Columns" drop-down to adjust which fields are shown in the results. For example, you can show the "originalEstimate" field in the result.
Documentation about all the things you can do with JQL is here.
Once you have JQL that locates the issues of interest, consider making a shared Dashboard in Jira or maybe a page in Confluence, configured to use that JQL. That way, those who want this information can "self-serve" and look it up whenever they want it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Olga Mocan -- Welcome to the Atlassian Community!
You posted this question in the automation area, and I wonder if that is what you wanted.
To just list/count the issues you could either use a JQL query or create a dashboard to show the issues returned by the query. If you needed this to occur repeatedly you may also "subscribe" to a save JQL query to have it email you on a schedule.
For example, you could use one query for all tasks for a department. Let's assume you have a custom field called Department. (Please change this and your project names and how you distinguish departments.)
project = myProjectName AND Department = myDepartmentName ORDER BY Key
To find the ones with an Original Estimate, just add that condition:
project = myProjectName AND Department = myDepartmentName AND originalEstimate IS NOT EMPTY ORDER BY Key
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.