Created vs Resolved Chart

tzigone February 3, 2013

Hi,

When I take this report I see that ### issued were resolved on day dd/mm/yyyy. When I search with JQL "resolved=mm-dd-yyyy", it says no issues are found.

What could be wrong?

Thanks,

1 answer

1 accepted

1 vote
Answer accepted
Jeison
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
February 3, 2013

Hi there!

That's actually quite simple, as JQL treats dates as an exact point in time. In other words, if you're searching for issues that were "resolved" on yyyy-MM-dd (without specifying the time), JIRA will only bring issues resolved in that date at 00:00 hour. To make that JQL work, you have to specify an interval of time, as in:

resolved > "2011/01/15" and resolved < "2011/01/16"

The query above will bring issues that were resolved between 2011/01/15 at 00:00h and 2011/01/16 at 00:00h. Alternatively, you can specify the time along with the date using "yyyy/MM/dd HH:mm".

For more information on advanced searching, refer to the documentation here.

Hope it helps!

Suggest an answer

Log in or Sign up to answer