I need JQL to find out all the issues which are created in previous months and resolved in current month.(without using any plugin)
Thanks
Hi @Gajanan Sasane ,
you can use the following JQL :
(created >= startOfMonth(-1) and created <= endOfMonth(-1) ) AND resolutiondate is not EMPTY AND ( resolutiondate >= startOfMonth() and resolutiondate <= endOfMonth())
Let me know if this helps,
--Alexis
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Gajanan Sasane ,
you can modify the function arguments to go back even further : startOfMonth(-1) will give you the previous month, startOfMonth(-2) 2 months ago, etc.
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.