I have a custom filed as "SIB". i want to query all the bugs that have updated "SIB" in last 100 days.
I tried few things like
- CHANGED (doesn't works with my field)
- updated > -100d (gives all the bugs but i need only bugs that have updated "SIB")
I was trying to work with "issueFunction and dateCompare" but not sure what sub query should be used.
You can't do that with JQL.
But if you wneed this information many times, you can use automation. To do that, you can create a date type custom field named "SIB updated" (this field should be hidden). After that, you can create an automation that triggered when the field "SIB" was updated. And update the new custom field "SIB updated" with the current date. So with the JQL "SIB updated" > -100d, you can get the query that you want.