Hello! I used a simple filter to select the issues from a board with the status "to-do", "in progress" and "done", but for some weird reasons I get issues coming from other boards.
What am I doing wrong?
Project = FL2 AND issuetype = Epic AND status = To-Do OR status = "In Progress" OR STATUS = Done
Hi @Sari , the issue is with the placement of the OR statement. Try the following.
Project = FL2 AND (issuetype = Epic AND status = To-Do OR status = "In Progress" OR STATUS = Done)
However, if your objective is to only get Epics then maybe the following is what you want?
Project = FL2 AND issuetype = Epic AND status in (To-Do, "In Progress", Done)
It all comes down to exactly what you were trying to query for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.