We got field FixVersion with data something like 2023.07.13.
I need to build query to extract all the Jira issues which has the fixVersion which is within 15 days from today.
Jira Gurus over there, please help, if this is achievable.
We are on Jira v8.20.18 (Data Center/Server).
To build a query that extracts all Jira issues with the FixVersion within 15 days from today, you can use the following JQL query:
project = YourProject AND fixVersion >= startOfDay() AND fixVersion <= endOfDay("+15d")
Here's an explanation of the query:
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.