Hey All,
I'm trying to clear a lot of my backlog, and I'm stuck on where to go for a specific filter to find items I need to close.
This is my current query;
project = project AND resolution = Unresolved AND updatedDate < "2018/04/01" AND status = Backlog ORDER BY updated ASC, priority ASC
I'd like to be able to find those cases that have also recently been updated my myself and another user in a certain time period.
I searched through https://confluence.atlassian.com/doc/search-139528.html and I don't think anything here applies to what I'm looking for.
Any assistance is appreciated!
Many thanks,
Tina. R
you can use
AND status changed by <username>
so,
project = project AND resolution = Unresolved AND updatedDate < "2018/04/01" AND status = Backlog AND status changed by <username> ORDER BY updated ASC, priority ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Tina -
You should be able to just add a "changed by <username>" condition to the query (if I am understanding you question correctly).
i.e.
project = project AND resolution = Unresolved AND updatedDate < "2018/04/01" AND status = Backlog AND changed by <username> ORDER BY updated ASC, priority ASC
-Ed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project = project AND resolution = Unresolved AND updatedDate < "2018/04/01" AND status = Backlog AND 'changed' = '<username>' ORDER BY updated ASC, priority ASC
It insisted on the quotes and I got a new error;
Field 'changed' does not exist or you do not have permission to view it.
I'm assuming this is where I need to implement a specific toolkit plugin?
https://marketplace.atlassian.com/apps/5142/toolkit-plugin-for-jira?hosting=server&tab=overview
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
use 'changed by' not 'changed ='
project = project AND resolution = Unresolved AND updatedDate < "2018/04/01" AND status = Backlog AND changed by <username> ORDER BY updated ASC, priority ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry that's not right - one sec
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.