I'm not quite sure what you want - your query works. The part of order by updated of course does not reflect the time when this status change occured since, as you said, there could be updates or comments.
If you want to identify issues where this status change was made in a certain time window (e.g. within the last 7 days) you could use following query with the DURING syntax.
project in (XXXXXX, YYYYYY) AND issuetype = Bug AND Status CHANGED FROM ("Blocked","Dev Complete","Feature Complete", "In Analysis","In Definition","In Development","In Front End Finalisation", "In Independent Test","In Progress","In Reqs Review","In Test","Not Started") to ("Closed","Done") DURING (-7d, now()) order by updated desc
Thanks for the "DURING (-7d, now())" part.
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.