The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Question about request on table values

Catherine Zzz
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 19, 2021

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

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Hana Kučerová
Community Champion
August 19, 2021

Hi @Catherine Zzz ,

welcome to the Atlassian Community!

Please try to use 

fixVersion >= V2.0.1

(>= the lowest version beginning with V2)