Hi ,
Needed some help in coming up with a query to find out the open tickets ( ticket status not as complete or resolved ) till November 30th , 2020 .
This is what i am trying -->
project = PS AND status not in (closed, resolved) and updated <= 2020-11-30
but i am pretty sure that's not correct . Any help would be much appreciated.
Regards,
Pranav
Hi Pranav,
Maybe try project = PS and status was not Done on 2020-11-30
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think @John Funk is correct though you have the text, "til November 30th, 2020".
Does the JQL need to include issues where the status was updated after 30th November 2020?
If so, would this work?
status was not in (resolved, completed) Before 2020-11-30 and status changed TO (resolved, completed) AFTER 2020-11-30
Or does this not solve the issue?
Let me know your thoughts John & Pranav,
Thanks,
Danny
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
the above query worked out for me but the one which you have provided will also be useful , thank you @Danny :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also had a manual check on the query you provided and works correctly pulling out the tickets which were resolved after 30th Nov.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad you got it sorted @Pranav Somani
Let me know if you need any further support.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Small correction: for me it did not work properly with the keyword status, but it work fine with the keyword resolution.
This did not work properly (the set of tickets was simply not correct): project = 10012 and status WAS NOT Done on 2022-11-26 and created <= "2022/11/26" and type = Bug
This worked: project = 10012 and resolution WAS NOT Done on 2022-11-26 and created <= "2022/11/26" and type = Bug
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.