Hi everyone,
I am trying to set up a JQL search filter for my dashboard that shows only stories with these characteristics:
- certain project
- only stories
- currently running sprint
- workratio larger than 100 (more timespent than estimate)
- status is not Done
This is the syntax I am using, but it only returns those stories that do not have sub tasks which are being used to add spent time. Those stories where people use the subtasks are not tracked here. (For stories with sub tasks we have an estimate on the story and remaining estimate is alway 0, so that the sub tasks aggregate to the sum of the story estimate).
project = theproject AND issuetype = Story AND sprint in openSprints() AND workRatio > 100 AND status != Done
Can anyone help me out here? I feel like it should not be to much work left to finish the query.
Cheers