You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.