I previously received help getting the Start date and that part is working but due date is still not showing up based on the jql i found. I understand that story points should not be use to equate a due date but this is how we are doing it internally. My understanding of the query is that it should multiply the story points by 5 based then based on start date resolve the due date.
Hi @iatkinse
What happens if you try the below smart value? The start date is always "now" in your rule so using the below code would essentially be comparing it to the start date.
{{now.plusBusinessDays(issue.Story Points.multiply(5))}}
I'm not entirely sure at the moment and can't test it. Basically, what we are doing above is + 5 days for each story point. I think we need to get that first as maybe a variable and then add to the variable.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I wanted to just have add days for instance if I have a 5points to a story and I wanted it to be done in 7 days, I tried to change to this: {{now.plusBusinessDays(issue.Story Points.add(2))}}
but it does not like that
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think something like below would work, but please test it first.
{{now.plusBusinessDays(issue.Story Points.plus(2))}}
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.