Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×hello,
I want to create a Jira JQL search for a range of dates but only by month. Instead of the date input of "YYYY/MM/DD" or "YYYY-MM-DD" but instead just MM/DD or MM-DD. Is this possible and does anyone know how to do this?
thanks in advance.
You can use the startOfMonth() function to do that. E.g.
created >= startofMonth() and created <= endOfMonth()
Will give you all issue of the current month. Placing a negative number inside the paranthesis will yield results from the previous months. E.g.
created >= startofMonth(-1) and created <= endOfMonth(-1)
Will give you all created issues from the previous month.
Awesome thank you, do you know, if I wanted to do the months between January 01-march 31st how to input this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would assume:
created >= startofMonth(-11) and created <= endOfMonth(-9)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Happy to be of assistance ;)
Kindly mark my answer as accepted, in order to help others with similar questions. Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.