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.
Hi, guys need your help here!! :)
I create a field type Calculated (scripted) Date/Time Field (JMCF app) and I want to calculate Due Date based on the creation date and the Priority, including weekends.
For example, if the priority is Critical should add 2 days based on the created date and that's the Due Date. Create date 18/08/20 + 2 = Due Date 20/08/20
So I ran with this solution
I tried to change it a little bit removing the part that excludes the weekends and adding the priorities that we work with,
But in many cases, I got Null as a result or will calculate only this part default : return date(issue.get("created"),5);
I'm not that good coding I'm just trying to use the logic here and is not helping me,
If anyone had an idea of how to calculate this will appreciate very much the help!!
Best regards,
Hi Ariel,
The formula for the Due date field should be:
switch (issue.priority.name){
case "Critical" : return issue.created + 2
case "Medium" : return issue.created + 4
}
Regards,
Radhika
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.