I am trying to figure out how to do a search to see if any time was logged to tickets that we were not added to the current sprint, as a way to audit if we are missing any tickets from the sprint and also audit if people are working tickets that were not approved to be worked on. Thank you!
This should do the trick –
( sprint is EMPTY OR sprint NOT IN openSprints() ) AND timespent > 0
Thanks so much Steven! The search above shows results of all tickets that have time logged, so there could be valid reasons tickets not in the sprint have previous time logged (we started working them in a prior sprint and they got de-prioritized etc.) so I need a way to search for time logged within the last two weeks on tickets not in the sprint. Is there a way to manipulate the time spent search to just be the last two weeks?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Perhaps this would be more useful then –
( sprint is EMPTY OR sprint NOT IN openSprints() ) AND worklogDate > startOfWeek(-2)
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.
No sweat.
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.