Hi,
I need to make a filter where I'm looking for issues which has a fixversion who begin with "V2". I have lots of fixversion V2.0.1, V2.0.2, V1.0.3 etc...
I would like not to have to write all the list of the fixversion if it's possible.
I tried :
AND fixVersion ~ V2 => ko
AND fixVersion IN ("V2%")
and some other but didn't find the solution.
Thanks if you have the tip.
Catherine
Hi @Catherine Zzz ,
welcome to the Atlassian Community!
Please try to use
fixVersion >= V2.0.1
(>= the lowest version beginning with V2)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.