I'd like to create a filter for issues due one month before due date? I've tried using a variation of syntax such as 4w, startOfMonth() and others but everything I try seems to pull back greater than one month.
The ultimate goal is to use Automation to add a label to tickets one month before due date.
Thank you,
Scott
Hi,
I think you could use something like : duedate > -30days
That will return all issue than due in less than 30 days.
That logic returns tickets due in January, which I do not want. I modified it to duedate < 30days but I don't know if that will grab everything I need.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This should do the trick, you will only get the issue due during the next month (not the ones before than the current day and the the ones in more than 30 days)
duedate > 0days AND duedate > -30days AND NOT duedate > 30days
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.