Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Prioritizr.DVF.Desirability > 0.75

Another JQL example is below to find all issues that are greater than 0.8 for Desirability, Viability and Feasibility:

Prioritizr.DVF.Desirability > 0.8 AND Prioritizr.DVF.Viability> 0.8 AND Prioritizr.DVF.Feasibility> 0.8

Lastly to find issues that have specific terms in the Justification field, the contains (~) operator can be used:

Prioritizr.DVF.Justification ~ “customer“ AND Prioritizr.DVF.Justification~ “research”

The equals (=) can not be used for the justification text field property. It is tokenized before indexing, thus allowing searches for particular words

For more information on advanced searching, check out Atlassian’s article “Search Jira like a boss with JQL”.