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.
Hey!
I was looking around for a way to compare two dates (custom date and resolved date) in the cloud version without an add on.
I found a way and wanted to share:
IF you use the following query:
"Planned Completion Date" < startOfDay() AND (resolutiondate > startOfDay() OR resolutiondate is EMPTY)
What is does is:
"Planned Completion Date" < startOfDay()- the SLA can only be breached if the planned date is in the past.
(resolutiondate > startOfDay() OR resolutiondate is EMPTY) - Once a ticket was resolved it will be greater than the start of the day and then the clock will stop, and of course if its still open it breached.
I tested it and it works, once the ticket is closed it will show the time after the planned date was past.