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.
Hello!
I have this scenario:
1. There are 3 custom fields when we create a ticket:
a. Days to Prepare Delivery (numeric) = customfield_11111
b. Legal Delivery Date (date) = customfield_22222
c. Final Delivery Date (date) = customfield_33333
2. I need to set the Final Delivery Date as follow:
Final Delivery Date = Legal Delivery Date + Days to Prepare Delivery
I used "Edit Issue" in Automation and set this in "Final Delivery Date" using plusDays:
{{issue.customfield_22222.plusDays({{issue.customfield_11111}})}}
but it didn't work, is this possible to do?
I tried to do like this:
Then I tried to do using a variable (but same idea):
Thanks in advance for all your feedback!
UPDATE:
I could fix my issue, I will share my solution:
Although my customfield Days to Prepare Delivery is numeric, is necessary to format it before to set in Final Delivery Date custom field, (as 2nd screenshot):
Using ".asNumber" format:
{{issue.customfield_22222.plusDays(finalDate.asNumber)}}
And it works!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.