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,
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!
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.