status CHANGED TO Closed AFTER "2014/11/01" AND status = Closed
My interpretation of your requirement from the title is "items closed since 2014-11-01 (start of november) and not changed since".
So something like
status changed during ("2014-11-01", now()) and status = "Closed"
Otherwise you can further refine your query using a variation of this (with more clauses perhaps), namely
status changed during ("2014-11-01", now()) and status was in ("Closed") during ("2014-11-01", now())
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Take a good read the JIRA Advance Searching which documents everything you need to know on stuff like this. Particularly, take a look at the "WAS" features and try to generate the JQL on your own.
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.