I would like to find all tickets, within a specified time period, that I assigned to colleagues. I did not take ownership of these tickets, I assigned them directly from the ticket queue. Is there a JQL query that will accomplish this?
Thank you for the help!
Hi Jehan, thank you for your reply. I'm looking for all tickets assigned by me to any of my colleagues, not specific colleagues, is this possible?
Maybe something like this might work:
JQL:
assignee CHANGED TO ("<Users Account ID>") AFTER "2024/01/01" BEFORE "2024/03/01"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm looking for all tickets assigned by me to any of my colleagues, not specific colleagues
try this:
assignee CHANGED BY ("<User Account ID>") AFTER "2024/01/01" BEFORE "2024/10/01"
The CHANGED operator is what you're looking for in this use case you can find it's documentation below.
https://support.atlassian.com/jira-software-cloud/docs/jql-operators/#CHANGED
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.