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.-
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)
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.