Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

How to write a query for two fix version

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.
Apr 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!
Sep 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.
Apr 18, 2022

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

Suggest an answer

Log in or Sign up to answer