I'm looking to find a JQL search for the following condition:
All issues transitioned from In Progress --> Query Raised within the last 24 hours
I've tried many different variations of this, using Atlassian documentation and other answers from the community but have had no such luck. Any help would be greatly appreciated!
Hey Callum,
Try this:
project = ABC and status changed from "In Progress" AFTER startOfDay(-1)
Thanks for your speedy reply John! Unfortunately this didn't work for me, and it is returning zero results. There are also other statuses which In Progress can transition to which I want to be ignored from the JQL - it is only one particular transition I am wanting to query
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you share some details about a card that it should have worked for but didn’t? It works fine when I run it.
Also, you can add changed from to for the status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've just amended the query slightly, from
status changed from "In Progress" to "query raised" AFTER startOfDay(-1) to
status changed to "query raised" AFTER startOfDay(-1).
This is now returning some results, which is great. However it's also returning some results which were last updated yesterday - how can I edit the AFTER startOfDay(-1) part to only return issues within the last hour?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Callum Carlile _Automation Consultants_
Please try: status changed to "query raised" AFTER -1h
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Worked like a charm, thanks both!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am glad that worked for you, @Callum Carlile _Automation Consultants_
__Bill
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.