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.
Dear Community,
I am really badly looking for a help regarding filtering out issues, created only over weekends ( Saturda, Sunday).
I've seen several topics, where people were using JQL with startWeek and so on, but in my case that doesn't work at all.
Maybe there is any other 3rd party plugin, which has the option to filter out such issues, with specific days?
Thank you!
Hi,
you can try comthing like this:
created > startOfWeek(-26h) AND created <= startOfWeek(1d) ORDER BY created DESC
May be you will need to adjust the argument in the first startofweek function
Thank you very much Mohamed! Do know maybe how this query is calculating the startofWeek, like whats the timestamp base to calculate -26h?
I am struggling also to filter out issues during working week and specific time frame like 09:00-18:00
created > startOfDay("+9h") and created < startOfDay("+18h")
and the same during working week, but including nights only
created > startOfDay(-6h) AND created < startOfDay(8h)
Do you think this querys make sense?
Thank you once again!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
by default startofweek means sunday at 12am so i think the correct syntax should be
startOfWeek(-24h)
instead of
startOfWeek(-26h)
StartOfDay() is equal to 12am so your first query seems correct. If you want the issue created outside working hours you could do it like below:
created > startOfDay("+18h") AND created < endOfDay()
But be aware that this JQL will return results only when you launched it after 18h, so you will need to create a subscription to have a mail with the issue list.
you can take look at this thread:
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.