I would like to find all stories that have points that are NOT using Fibonacci numbers.
How can I write these criteria in proper JQL?
Hello @Stefanie Sullivan
You've pretty much got it. You just need the proper syntax.
"Story Points[Number]" is not EMPTY and "Story Points[Number]" not in (1,2,3,5,8,13,34) and "Story Points[Number]" <= 55 and "Story Points[Number]" != 0
You can actually combine the last one with the second one:
"Story Points[Number]" is not EMPTY and "Story Points[Number]" not in (0,1,2,3,5,8,13,34) and "Story Points[Number]" <= 55
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.