Help with search using summary field

Jaya tamrakar July 23, 2015

I have very new to JIRA and JQL.  I am trying to run a report of all the issues with priority critical, status = Open and summary = UNIT- 456 / test 345. When I run the query just with priority and status, it works just fine but as soon as I add the summary part, I start getting errors so I am sure I am adding it incorrectly.

My Query:

Project = “DEMO” and Status = Open and Priority = Critical and summary ~ “UNIT\\-456”

I keep getting no matches found.

1 answer

0 votes
Christian Czaia _Decadis AG_
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.
July 23, 2015

Try this (with asterisk *)

Project = DEMO and Status = Open and Priority = Critical and summary ~ “UNIT- 456*”

Cheers

Jaya tamrakar July 23, 2015

Thanks for your response Christian.

I tried two options:

Project = DEMO and Status = Open and Priority = Critical and summary ~ “UNIT- 456*”

This gives no matching issues found.

Project = DEMO and summary ~ “UNIT- 456*”

This gives all the issues with all the summary except the ones with UNIT-456

Suggest an answer

Log in or Sign up to answer