jql comparing created date

Federico Scheu October 14, 2015

Hi, I'm using the following query to retrieve the created issues in september:

created >= 2015-09-01 AND created <= 2015-09-30

But the issues created in 30/09/2015 doesn't show up in the results, is like it doesn't take into account the equal. I have to use:

created >= 2015-09-01 AND created <= 2015-10-01

Someone knows why this works in this way, I found it confuse.

Regards,

Federico.-

1 answer

1 accepted

0 votes
Answer accepted
GabrielleJ
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.
October 14, 2015

This JQL option needed time to be included for it to work like you to intend it to. You also have the option to use startOfMonth() endOfMonth() and add offsets if you wish (like startOfMonth(-1) to get the data from last month without worrying about adding the time)

Suggest an answer

Log in or Sign up to answer