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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.