I have parallel sprints running for several different client projects and would like to create a board that displays only sprints for a specific client. I have been using unique prefixes on the sprint names so they are easy to distinguish, but my attempts at filtering with wildcards (e.g. sprint = "XYZ*") have not been successful.
It looks like you should be able to search on the unique prefix to return all results containing that string - there's no need for a wildcard character:
sprint = "XYZ"
This was tested on JIRA v6.3.10.
Thanks. It sort of works. My query is simple: project in ("A", "B") AND sprint = "ABC" It brings back all of the sprints that start with ABC as you suggested. It also brings back a few others active sprints that don't start with ABC but not all of the non-ABC sprints. It does keep tickets in those non-ABC sprints from showing, but it still seems not to be 100% right.
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.
Thanks a lot!! I was trying to do wildcard search on the team name suffix and it was just not showing up! Your solution helped me a lot... btw, this style is non-intuitive
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Shayne - Can we use the contains operator with sprint names? sprint ~ "XYZ" ?
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.
It looks like we cannot use wildcard search on "sprint" field. I have tried <Sprint ~ "T2020*"> , resulted an error that says sprint field doesn't support ~. Have you got any workaround (without java code) for this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was looking for some sort of wildcard to use. It didn't occur to me that the search itself would consider all sprints that include the text. I thought it was exact match or nothing. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.