You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I'm trying to track/filter out Sub-tasks or Deliverables set as For Review or Complete where team members have forgotten to log time against... Any ideas?
Working with JIRA v7.2.6, Portfolio for JIRA v2.2.2 and JIRA Agile v7.2.8-DAILY20161130154106
Cheers,
Leo
Try this:
(issuetype in subTaskIssueTypes() or issuetype = Deliverables) and timespent is empty and status in ("For Review",Complete)
Thanks guys, both works great!
I added originalEstimate is not EMPTY to filter out issues without Estimate as well:
issuetype in (Deliverable, Sub-task) AND status in (Complete, "For Review") AND timespent is EMPTY AND originalEstimate is not EMPTY
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Léonard Texier
I am also getting issues with logged time using this jql.. we use tempo for logging time.. am i missing?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Akbar,
I am also having the same situation as you.
I would like to filter issues with no logged time using Tempo Timesheet. Any ideas ?
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Dhouha,
Try to use filter created in Advanced Issues Search with JQL: resolved is not null and timespent = 0
Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Andriy,
Thank you so much for your help. It's working but it doesn't display all unlogged issues.
I'm using JIRA Cloud btw
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Never mind.
It's working while using "timespent is EMPTY".
Thank you very much for your help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Gaston's should work. If not try this
issuetype = Sub-task or issuetype = Deliverables AND status = For Review or status = Complete AND timeestimate = 0
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.