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

Searching issues except CPR

Hi All,

 

I want to search all issues except "CPR" issues, how do we search ?

Thanks in advance..

2 answers

1 vote
Valerie Knapp
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Oct 11, 2023

Hi @Sagar Mali , thanks for your question.

You can use the Not In in the JQL query, like this

type NOT IN (CPR)

Please can you test this and give us your feedback if this resolves your issue?

Cheers

assignee = currentUser() AND resolution = Unresolved order by updated DESC AND NOT IN (CPR)

This is not working. 
In "Key" field "CPR" issues are there

Valerie Knapp
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Oct 11, 2023

Hi @Sagar Mali , I understood you meant that CPR was an issue type, my apologies for the confusion.

You should try this instead to search for text.

description !~ "CPR"

So the full query would be this-

assignee = currentUser() AND resolution = Unresolved order by updated DESC AND description !~ "CPR"

Hope that helps.

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Oct 12, 2023

How are you telling Jira that an issue is a "CPR issue"?  Issue type?  Project?  Content of a field?

Type CP Patch Request

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Oct 12, 2023

Ok, so you can add a clause for "and issuetype != 'CP Patch Request'"

It worked, thanks

Suggest an answer

Log in or Sign up to answer