How do I update this filter to ALSO include by Component name - JQL - sprint in (openSprints(), futureSprin
Hi. sprint in (openSprints(), futureSprints()) AND project in (TIS)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If by "Component name" you mean the Components field, then the corresponding field for filtering is "component".
Since "component" is an optional multiple selection list, you can use IN to filter based on the field having any one of multiple values you specify.
If you want to also include issues that have no value in the Components field, you also have to check for the field being empty.
AND (component IN (value1, value2) OR component IS EMPTY)
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.