I am trying to retrieve the data between two dates. (date range)
I am using the below JQL and it is not getting the desired result. Please help me.
project = CCU AND issuetype in (Bug) AND "createdDate" <= '2015-01-01' AND "createdDate" >= '2015-01-31'
Hello Vikram,
For your query, you wish to retrieve all bugs from project CCU created in January, am I right? In that case, your query should be like:
project = CCU AND issuetype in (Bug) AND "createdDate" >= '2015-01-01' AND "createdDate" <= '2015-01-31
Bingo, thanks Rodrigo this worked. Thank you so much.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What are you trying to search?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.