How would I create a query to find out all the issues that were closed since a point in time i.e., 3/1/18? Or since a status changed from one thing to another from a given point in time I know the History shows this information on each issue but I can't find a way to access that information in a query.
hi @mcarreon11,
I suppose JIRA has
therefore i suppose currently it is not possible to query Closed tickets with JQL.
I usually use below query.
resolutiondate >= "2018/03/01"
But as @Nic Brough -Adaptavist- said. you can create a report to query this information.
I did some more research and found the following resolved my issue
AND status changed to "" after ""
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I suppose i misunderstood your question @mcarreon11. glad you found a way :) .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Code. You need to do one of:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And we cannot create any new custom fields to track the date closed.
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.