Hello, please advise. I really need your help :(
I need to get all closed tickets (from April 1 - July 1), but so that those that were created in the 1st quarter (from January 1 - to April 1) are also counted but closed in the 2nd quarter (from April 1 - July 1) .
Is this even possible with jql?
@Alex Do you have multiple statuses for "closed tickets" or do you consider having a resolution as closed?
Hi @Dave Mathijs , one status for "closed tickets"- resolution - Done.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Dave Mathijs
I thought the JQL script would work:
project in (TOPPROV, ABC) AND (created >= 2022-01-01 AND created <= 2022-07-01 AND assignee in (i.shangarev, t.petrakov) AND resolved >= 2022-04-01 AND resolved <= 2022-07-01)
but it didn't work out
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try
project in (TOPPROV, ABC) AND (created >= 2022-01-01 AND created <= 2022-07-01) AND assignee in (i.shangarev, t.petrakov) AND (resolved >= 2022-04-01 AND resolved <= 2022-07-01)
so
project in (TOPPROV, ABC)
AND
(created >= 2022-01-01 AND created <= 2022-07-01)
AND
assignee in (i.shangarev, t.petrakov)
AND
(resolved >= 2022-04-01 AND resolved <= 2022-07-01)
If it doesn't work, try building up your query creating 1 clause, then adding another.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Dave Mathijs Please tell me what should I add to the script so that it displays the rest of the statuses in the filter?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Replace resolved by resolutiondate in your JQL query
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Show up and give back by attending an Atlassian Community Event: we’ll donate $10 for every event attendee in March!
Join an Atlassian Community Event!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.