I'm using the syntax
status = "Waiting for support" OR status = Escalated AND assignee is EMPTY ORDER BY "Time to done" ASC
It was working but recently it is not filtering out tasks assigned to me? it is, however, filtering out takes assigned to my colleges.
I would guess that it has been edited, removing the grouping that I think you need.
The statement will currently select for issues that are waiting for support or are escalated (which is where your assigned tasks come from), and then add anything with an empty assignee to the list. I suspect what you really want is
(status = "Waiting for support" OR status = Escalated) AND assignee is EMPTY
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.