Hello Jira folks,
Is there a way to calculate the set difference of (affectedVersion - fixVersion) in Jira?
Or display issues where this difference is not empty?
For example I would like to see only issues OSAND-88 and OSAND-89 with the depicted versions:
I only got to creating separate filters for each version:
project = OSAND AND affectedVersion = Ver1 AND fixVersion != Ver1
project = OSAND AND affectedVersion = Ver2 AND fixVersion != Ver2
Do you know how to tackle this with a single query?
Sunny greetings and thank you
Hartmut
I think the closest you can get is
project = OSAND AND affectedVersion = Ver2 AND fixVersion not in (Ver1, Ver2)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.