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.
I have a user that wants a filter to manage the SLA for their dept. But they want to exclude weekends. This is what we came up with, any ideas how to exclude weekends now?
project = INC AND status = Open AND Delegation = "CPE Incident" AND created <= -24h OR status = Assigned AND Delegation = "CPE Incident" AND created <= -48h OR status = "In Progress" AND Delegation = "CPE Incident" AND created <= -48h
This is probably way too late to help you but I will put an answer in here for anyone else who finds this question.
If you I understand your criteria correctly they want
project = INC AND status = Open AND Delegation = "CPE Incident" to have an SLA of 24h Mon-Fri but no counting of Saturday/Sunday and they are looking for items that meet that criteria (I have ignored the other variants of Delegation for now).
So we can split the criteria in to three parts issues raised on Monday-Thursday current week
(created <=-24h and created >startOfWeek())
now lets look at issues raised on Friday
(created <=-72h and created >startOfWeek(-2d) and created <startOfWeek())
What this does is uses the 72h period to ignore Sat/Sun for any ticket created on the previous Friday
and everything earlier
(created <=-24h and created <startOfWeek(-2d))
Putting all three parts together you get
(created <=-24h and created >startOfWeek()) OR (created <=-72h and created >startOfWeek(-2d) and created <startOfWeek()) OR (created <=-24h and created <startOfWeek(-2d))
Regards
Phill
Hey @Phill Fox ,
great idea to share your knowledge even 5 years later :DDD.
I was just looking for exactly that filter, not with created but with updated, but it works the same way :).
Thanks a lot and BR
Franzi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am glad to have helped you. Using the startOfWeek and endOfWeek functions can be tricky to get your head round at first but they are super powerful along with the ones for Day/Month.
kind regards
Phill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Phill, I have another scenario wherein I need to check if an issue is beyond the SLA, here again, i need to exclude the saturday and sunday based on the creation date. For example, if the priority of an issue is Critical, we need to resolve this within 1 day. If it has passed one day and the issue is still open then we tag them.
Currently, I have this query...created <= endOfDay(-2d) AND priority = Critical. This works great but it doesnt take into account the weekends. So if the defect was created on a friday it starts tagging on a saturday if it is still open but I want it to tag on Monday by excluding saturday and sunday.
Is there anyway I can do this with your above resolution in addition to my query
created <= endOfDay(-2d) AND priority = Critical
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Dan,
Its a requested feature (see here) but the closest thing to it can be found here: https://answers.atlassian.com/questions/38644
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.