Filtering using 'or'
Hi,
I'm trying to filter my issue list to show submitted issues of either type 'user feature' or type 'technical feature'. I'm trying to do it like this
but that's not working. Anyone know how I can do it? I know I can write
but then I am duplicating all the "and" terms.
Regards,
Philip
I'm trying to filter my issue list to show submitted issues of either type 'user feature' or type 'technical feature'. I'm trying to do it like this
- Submitted (#{User Feature} or #{Technical feature})
but that's not working. Anyone know how I can do it? I know I can write
- Submitted #{User Feature} or #Submitted #{Technical feature}
but then I am duplicating all the "and" terms.
Regards,
Philip
Please sign in to leave a comment.
Please, use the following query:
In your case, you need to list several values for one attribute. For that we have a comma symbol (",").
You are welcome!