So, I'm not a JQL master... I think I use max once every two - three weeks... LOL.
That means I get stumped easily on really easy basics and so here's a dump question:
How do I search DONE issues that do NOT have a fix version...?
This JQL is good and gets desired result:
project = "ENVIS" AND statusCategory = Done ORDER BY updated DESC
This JGL is NOT good and I get a warning message:
project = "ENVIS" AND statusCategory = Done AND fixVersion = "None" ORDER BY updated DESC
The value 'None' does not exist for the field 'fixVersion'.
My gut feeling tells me I should be pouring through this in more detail:
https://confluence.atlassian.com/jiracorecloud/advanced-searching-765593707.html
But I'm lazy, love hanging out on Community, and I'm sure someone would LOVE to get an extra Accepted Answer today....! 😉🏆
If you use the below, you should hopefully get the answer you're looking for! 🤓
project = "ENVIS" AND statusCategory = Done AND fixVersion = EMPTY ORDER BY updated DESC
- Alex
Super awesome @Alex Laycy ! 🏆🌟👌
I don't even need to type... just copy/paste your suggestion! Bing bang! Thank you kindly 🙏😇
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try fixversion is Empty
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OMG... really....??
"empty" instead of "none" ?? Even though Jira cloud is showing status "None" on my screen....?
LOLz - silly Jira! 😜
Thanks @Jack Brickey ! Much appreciated. 🌟👏
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.