How to see the treatment closed on the day of creation?

Hello, guys!
I need help.
How can i see all issues where createddate=resolutiondate?
use search JQL

2 answers

1 accepted

2 votes
Answer accepted
Thomas Magny-Garcia
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.
June 25, 2019

Hi @Никита Марасинский 
Be careful of the data type you want to use, createdDate is not a data of the type "datetime". This type use the day but also the hour of the event.
Maybe you can use something like :

issueFunction in dateCompare("", "created +1d > resolutionDate ")

to find issues that the resolution date is less than 24h after the creation date.

Yeah, its working!
Thank you so much!

0 votes
Ravi Sagar _Sparxsys_
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.
June 25, 2019

Hi @Никита Марасинский 

Not out of the box.

What you can do instead is use the following JQL with both the columns side by side in your Issue Navigator. Not ideal.

ORDER BY resolved ASC, created ASC

There are ways to do that using an add-on too.

Ravi

Yeah, i know some SQL functions, but i need this query for JIRA Desktop.
Anyway, thanks)

Suggest an answer

Log in or Sign up to answer