Hi all,
Trying to create a query that will return the issues that were updated during January and they didn't get the status Done during January.
The bold one is the problematic sections of my query. Any Ideas?
project = CPD AND issuetype in (Story, Bug, Task, "Tech Task") AND updated >= 2023-01-01 AND updated <= 2023-01-31 AND status was not changed to Done during (2023-01-01, 2023-01-31)
Hi @Vasilis Gen - I think you want to tweak it like this:
project = CPD AND issuetype in (Story, Bug, Task, "Tech Task") AND updated >= 2023-01-01 AND updated <= 2023-01-31 AND status WAS NOT Done during (2023-01-01, 2023-01-31)
Essentially there is no "was not Changed". You would simply state that issue was not Done during that timeframe.
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.
Hi,
You can try this
NOT status changed TO "Done"
I will go for "startOfMonth(-x)" and "endOfMonth(-x)" instead of the hardcoded date
x mean the number of month you want to go back
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.