I need a filter so that I can see who the "Logged time" has hit more than the time than "Estimated time"
any thoughts?
Thank you
Natively, you can get all issues where the time spent is higher than the original estimate with this JQL:
workratio > 100
By showing the assignee in the Issue Navigator, you will get the info you need.
You might want to save that query as a filter in order to feed a Pie Chart by Assignee in a convenient dashboard for keeping track of things like this.
Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad to help!
Mind that you can filter that further for getting only issues where the user who had logged work belongs to a certain group, with a query like:
workratio > 100 AND worklogAuthor IN membersOf("jira-administrators")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Maxim,
you can write an add-on with a custom JQL Function that will filter issues in your favourite way.
Or you can use third-way addons like ScriptRunner : https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_expression
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.