I am attempting to view from a JQL any issues that were in multiple statuses during a date range.
(example, not actual JQL)
status WAS IN ("In Progress", "In Development") DURING 2021-07-01 AND 2021-07-14
Give this a try…
status WAS "In Progress" DURING (2021-07-01, 2021-07-14) OR status WAS "In Development" DURING (2021-07-01, 2021-07-14)
Status changed to ("Closed", "Done") DURING ("2023-01-01", "2023-03-31"))
OR
Status WAS IN ("Closed", "Done") DURING ("2023-01-01", "2023-03-31"))
would also work
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.