How to write a query for two fix version

selva perumal
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!
April 17, 2022

Two fix versions need to be consider for this filter. one is SRK_v98 and second one is "MSEdge_R1". I wrote as below and it is not working.

project = CS AND fixVersion = "SRK_v98" & "MSEdge_R1"

2 answers

3 votes
Fabio Racobaldo _Herzum_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 18, 2022

Hi @selva perumal ,

welcome to the Atlassian community!

If you need to retrieve issues with fix versions A or B please use this JQL :

project = CS AND fixVersion in ("SRK_v98","MSEdge_R1")

If you need to retrieve issues with fix versions A and B please use this JQL :

project = CS AND fixVersion = "SRK_v98" and fixVersion = "MSEdge_R1"

Hope this helps,

Fabio

Rajasekar Dhanasekaran
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!
September 28, 2023

project = ABC AND fixVersion = "A5" and fixVersion = "Mule-1"

above query is not and throwing an error

1 vote
Chihara
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 18, 2022

project = CS AND fixVersion in ("SRK_v98", "MSEdge_R1") ?

Suggest an answer

Log in or Sign up to answer