Dear Friends,
Is it possible to filter the issues based on the transition date?
We need to filter the bugs having the Status "Closed" or "Done" based on the date they actually got transitioned to Closed or Done (independent of the actual end/closed date field).
Looking forward to your responses.
Thanks & regards
Ankit Yadav
Hi @Ankit Yadav , you can use the "was" and "was not" operators that may meet your goals. For example...
Status = done and status was not done before startOfMonth(-1)
the above finds issues that are now Done but we're not before 8/1/2023.
if you can provide the details of your goal maybe I could provide a more specific JQL.
Thanks @Jack Brickey for your prompt response. I will try your suggestion and will keep you updated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jack Brickey I and one of my colleague tried your suggestion but we could not succeed.
Could you please help us by providing the specific JQL?
Requirements are as follows:
Issuetype = Bug
Issue Status = Closed
Transitioned to Status "Closed" between 1st Aug 2023 and 31st Aug 2023
Is the above information sufficient or you need more to provide the specific JQL?
Looking forward to receiving your help.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here you go...
status changed To Closed AFTER 2023-07-31 and status changed to Closed before 2023-09-01
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh and add in the Issuetype bit too...
Type = bug and status changed To Closed AFTER 2023-07-31 and status changed to Closed before 2023-09-01
also note, if the issue transitioned out of closed during or after moving to closed then the above will still capture the bug in the results. In other words, if you wish to exclude any issues that are not still in the closed status, then use the following...
status = closed and Type = bug and status changed To Closed AFTER 2023-07-31 and status changed to Closed before 2023-09-01
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks a lot @Jack Brickey for your help and detailed response. I will try the suggested JQL and will keep you posted.
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.
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.
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.
I don't think that is what you want based on the mentioned detail.
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.