Hi All,
Im trying to get a list of tickets from a set of users that were assigned between two dates, but I cant seem to get it to work, i end up with results outside of my date range.
Here is my current JQL
project = test AND assignee WAS IN (user1, user2, user3) AFTER 2019-11-04 AND assignee WAS IN (user1, user2, user3) BEFORE 2019-11-11
I have also tried the during syntax, but it still pulls back tickets outside of my two dates.
assignee WAS currentuser() DURING ("2019/11/04","2019/11/11")
Thanks!
@Tony
Did you checked this filter?
project = test AND assignee was in (user1,user2) DURING ("2019-10-10","2019-11-11")
if it's not working check this one
project = test AND assignee changed DURING ("2019-05-10","2019-11-11") TO (user1,user2)
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.