Hello,
I'm trying to create an automation rule that set the stated date as today and the due date as (started dating + original estimate (h)).
The first half is pretty simple, but I'm struggling with the part of the due date: I've set the due date with this line:
But with a started date of mars 8, 2024 and a 6h estimated, the result is August 25, 2026 with makes no sense.
Can you please help
Hi @Laurence Fortin -- Welcome to the Atlassian Community!
A possible smart value to use for this scenario is:
{{issue.timetracking.originalEstimateSeconds}}
And so adding to {{now}} would be this, with a default value of 0 just in case:
{{now.plusSeconds(issue.timetracking.originalEstimateSeconds|0)}}
That would be in calendar / clock time, and not in working time.
Is this what you actually want? If not, consider dividing your time in seconds into whole days and use plusBusinessDays() for the addition.
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, but i have the same result with {{now.plusHours(issue.timeoriginalestimate)}}
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.