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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.