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
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.