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.
Hi there,
Trying to create a filter to show all files that were created during a week, but our SPRINT week starts on Thursday and close on the following Thursday.
I tried the following
project = DEV AND created > startOfDay(-8d) AND createdDate < startOfDay(1d)
and also
created > startOfWeek(-4d) AND created < endOfWeek(4)
But I was wondering if theres a way to check new tickets created > startofDay( "LAST THURSDAY" ) and createDate < ( "THIS THURSDAY") -
Thank you
Hey Joao - What about trying this?
project = Dev and created >= endOfWeek(-10d) AND created <= endOfWeek(-1d)
Hey John I do have something similar to it right now project = DEV AND created > startOfDay(-8d) AND createdDate < startOfDay(1d)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That should show you issues created between Last Thursday and this Thursday. :-)
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.