Hi all. I would like to create a due date based on a set date starting on 2023-08-02, and then it updates to plus 3 weeks, so the next due date starting the day after will be on 2023-08-23. I'm using automation to set up task due dates, so this would have to happen dynamically without much human intervention. I've tried setting up a calendar to iterate through the dates and compare them to {{now}}, but I couldn't find a way to implement a "for loop" of sorts. I thought advanced branching would be the solution but I couldn't figure it out. If anyone can help me out with this I would be very grateful, thanks!
Other than a case of a one-time-usage rule, I am unclear how this would work long term. Wouldn't the "starting point" need to change over time?
Regardless...
A few ways to do what you ask are: created variables, an "anchor story", and entity properties:
Kind regards,
Bill
Yeah the starting point will likely change at some point in the future, but for now this is a good solution. I've set an anchor point, and from there I'll do a JQL lookup to use that date with {{lookupIssues}}. Every 3 weeks the anchor story will get another 3 weeks added with an automated JQL rule using {{lookupIssues.date.plusWeeks(3)}}
Thanks for the help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think @Bill Sheboy has the most suitable answer, but thought I'd ask questions in case there was a more dynamic option...
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the interest! To answer your questions:
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.
The thing is that these due dates are based off of a set calendar, so in the example with the due date 2023-08-02, {{now.plusWeeks(3)}} won't work.
Once we approach this date, the next date should advance 3 weeks, so 2023-08-23.
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.