I would like to create a JQL filter that will show one individuals work from 2 separate fields, in the current open sprint.
For example, please show me any ticket in which John Smith is the assignee of the ticket or if John Smith is the QA Tester of the ticket AND those tickets are in the open sprint.
For some reason, I can't get both the And or statement to both work. This is what I have tried, what am i doing wrong?
Thanks
Holly
project = DA
AND assignee = 6385a95c00cb2fc3f989925b
OR "QA Tester[User Picker (single user)]" = 6385a95c00cb2fc3f989925b
AND sprint IN openSprints() ORDER BY created DESC
When you are using OR in your filter it important to also use (). The way your JQL is currently configured it will get you all issues in the DA project that are assigned to John Smith OR all issues in any project that John Smith is the QA Tester and in an open sprint.
This should get you the result you are looking for:
project = DA AND (assignee = 6385a95c00cb2fc3f989925b OR "QA Tester[User Picker (single user)]" = 6385a95c00cb2fc3f989925b) AND sprint IN openSprints() ORDER BY created DESC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.