Hi,
How can I create a filter that reports all tasks (not closed) where logged time exceeds estimated time?
Thanks,
David
Community moderators have prevented the ability to post new answers.
Actually, you can use workratio in JQL. See the examples.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is not possible using JQL. The fields timespent and timeestimate require a time duration value. So you can't compare this fields.
Possible solutions:
[1] write your own plugin
[2] make excel export and compare this values in excel
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.
Is it not possible to do a "JOIN" between the task table and the relevent tempo table in JQL? Or do I misunderstand the back end of JIRA?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi David,
Script Runned and
AND issueFunction in expression("","timeoriginalestimate < timespent")
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.