I'm trying to query tickets based on a date range. I've looked at several items here but none of them seem to work. Here is what I'm trying to do:
project = eCom AND assignee in ("name1", "name2", "name3") AND sprint not in (i20150402, i20150317, i20150303) AND resolved >= 2015/02/15 AND resolved<= 2015/03/31
Essentially get the tickets resolved between 2 dates.
Thanks in advance
Can't see why that should happen, might be best to post this directly to Atlassian JIRA Support!?
Apologies, while that comment may be valid, it would make your filter more open.
For comparison here's an approach that filters out issues resolved within two dates
project = NARW AND issuetype = Bug AND status was Resolved during (2015-01-01, 2015-01-31) AND resolution was in (Fixed, "Fixed not Merged", Done) during (2015-01-01, 2015-01-31)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried doing something much simpler to isolate the problem better. project = ANL AND status was Resolved during (2015-01-01, 2015-01-31) I'm getting an error that says "Error occurred communicating with the server. Please reload the page and try again.". All other queries work fine.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think your sprint IDs may be the issue as these should be integers. Hover over the sprintID and check what is displayed in the footer of JIRA to get the number of the sprint.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So, let's concentrate on the date clauses - I assume that's what you think is not working?
I can't see anything wrong with your JQL - what is it returning? Can you definitely identify an issue where the "resolved" date is showing outside that range?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It might be too late you Scott but for everyone else with similar issues (like I just had) - you're missing quotes around your data. This should work:
AND resolved >= "2015/02/15" AND resolved<= "2015/03/31"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.