Hi, I'm trying to create a query that only pulls tickets in certain statuses and only with a specific component.
Here's the query I'm trying to use:
project = TISSDEV AND component = SOS AND status = "On Hold: Missing Information" OR status = "On Hold: Technical Issue Preventing Development"
The problem I am having is that I'm getting ALL tickets with the statuses above, not just the ones with the SOS component. Can someone please tell me what I am doing wrong?
project = TISSDEV AND component = SOS AND status in ("On Hold: Missing Information", status = "On Hold: Technical Issue Preventing Development")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.