I have the following query inn jira
project = GE AND resolution = Unresolved AND component in ("Projects ", "Sales Content") ORDER BY priority DESC, updated DESC
However I want it to only show results for components that have both Project AND Sales Content. Would you be able to tell me how to update the query to yield that result?
When using IN, you are searching for "Projects" OR "Sales Content". Instead, based on what you have described, you would like to replace the:
component in ("Projects ", "Sales Content")
with
(component = "Projects " AND component = "Sales Content")
More information on Advanced Search documentation.
Kind regards,
Rafael
Hello @Sydnie Andreassi,
Try to use ....and component = ("component1" AND "component2"). This should work.
Best regards,
Jakub
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.