i am still seeing an issue which is not part of this sprint
I'm guessing the extra issue is a blocked issue? As soon as you used an OR in the JQL you are opening it up to all Blocked issues. I would place ()s around that last part of the JQL.
(Status = Dev or Status = Blocked)
There are some other issues with the JQL, the two sprint parts seem redundant, if you only want Sprint = 185, then all Sprints it finds won't be empty.
yes, the extra issue is the blocked issue. thank you for explaining.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, @Mangesh Waikar
Welcome to Atlassian Community.
There is a problem with JQL query. Put status conditions to clauses. It must look like
AND (status = DEV OR status = Blocked)
Or use status condition like
status IN (DEV, Blocked)
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.