JQL query for transitioned to particular status 'today'

Jamie Harrop
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 3, 2019

Hi,

I am trying to build a JQL query that shows me issues that were transitioned to two particular status' 'today'. Today needs to be dynamic, so I can't use a specific date. I've got this working with a specific date with the below query:

project = [PROJECT] AND status changed to ("Published", "Live") during("2019-01-03", "2019-01-04")

How do I amend this so the date is dynamic to today (specifically today, not the past 24 hours).

Thanks,

Jamie

2 answers

0 votes
Tarun Sapra
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 3, 2019

Hello @Jamie Harrop

Here it is

project = [PROJECT] AND status changed to ("Published", "Live") AFTER startOfDay()
0 votes
Marc Minten _EVS_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 3, 2019

"...AFTER startOfDay()..." in stead of "during (...)" ?

Suggest an answer

Log in or Sign up to answer