i am trying to search for issues submitted during a certain period but exclude those that have been modified by certain users. so far i've got this filter but it does not work
project = iso AND issuetype = Bug AND Status changed from "Ready to Test" to (Open, Closed) after startOfDay() AND Source in (Core, Dev) AND updated >= -10h AND (Not status changed BY x@abc.com) AND (NOT status changed BY y@abc.com)
any ideeas? :(
Hello,
Your JQL query looks correct. What is not working?
You should provide users after the By keyword, not email addresses.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just tried this JQL:
(Not status changed BY myuser) and it worked correctly for me. It showed only issues where myuser never changed the issue status.
I tried it on Cloud
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, worked for me also (even with emails) i just had to add quotes before and after email address and correct a typo where i used NTO instead of NOT.
Thanks a lot !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are welcome!
If you think that my answer helped you, kindly mark my asnwer as accepted.
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.