Im trying to filter out all the issues that were assigned to me on a specific date and I used the following:
assignee was currentUser() ON "2024/02/02"
But it doesn´t work, it shows me all issues that I ever was assigned to.
Anyone that can help?
Hi @Camilla Flores ,
While the JQL you mentioned should work, maybe you can try to duration instead of ON
eg.
assignee was currentUser() DURING ("2024/02/01","2024/02/03")
---
Note, that this filter will show you those issues too where you're still the assignee, if you're looking for issues that "WERE" assigned to you but currently you're not the assignee then you need to add one more clause to your query.
(
assignee was currentUser() ON "2024/02/01","2024/02/03")
AND assignee =! currentUser()
Hi @Camilla Flores Please try the below JQL and let me know if it gives what you looking for.
assignee CHANGED TO currentUser() on "2024/02/02"
Thanks
Ravina
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.