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,
I am looking at creating a calculated scripted field in Script runner based on the Days:Hours:Minutes to resolution.
The have managed to do this calculation to based on the numbers of days, but not down to the hours and minutes.
return (issue.resolutionDate != null) ? String.format("%d day(s)",(int)((issue.resolutionDate.getTime() - issue.getCreated().getTime()) /(1000*60*60*24))) : "N/A" ;
Thanks in advance
Hello Everyone ,
Am currently facing issues with the script to calculate "Total time to complete" from status Open (To Do) - Complete (Close).
Could you please help us with a script to fulfill this requirement. Let us know if it is possible to calculate the time from "To Do" status in workflow?
Below is the script currently giving results from status "In Progress -> Complete". Help us to get results from status "Open ->Complete".
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.CustomFieldManager;
import java.util.Date.*
def customFieldManager = ComponentAccessor.getCustomFieldManager();
def dateFieldObject= customFieldManager.getCustomFieldObjectByName('Progress Start Date');
def dateFieldObject2= customFieldManager.getCustomFieldObjectByName('Progress Closed Date');
def dateValue
def dateValue2
if(issue.getCustomFieldValue(dateFieldObject) && issue.getCustomFieldValue(dateFieldObject2))
{
dateValue= issue.getCustomFieldValue(dateFieldObject) as Date
dateValue2= issue.getCustomFieldValue(dateFieldObject2) as Date
/* return dateValue2.getTime() - dateValue.getTime() */
log.warn("success" + dateValue);
log.warn("success" + dateValue2);
return (dateValue2.getTime() - dateValue.getTime())/1000 as int
log.warn("success");
}
Thanks in advance
Phaneendra Babu B
Hi @djamal
I am trying to do the same. Can you help me in getting the hours and days?
I was able to get the no of day by using resolvedDate - createdDate.
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello!
You may do the similar with CelesteCS Math for Confluence, which allows any calculations in Confluence, including any manipulations with table data. Date parameters and functions, like NOW() and DATE() are supported.
Assume you have a table with three columns and three rows on your page – from A1 till C3, where row 1 is the header row. The sum calculation formula for rows 2 and 3 will be simple:
SUM(Table1.A2:C3) |
There is a plenty of other functions in the macro, so you may perform any calculations using formulas in EXCEL style.
Thanks!
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.
Use JiraDurationUtils instead to format duration.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Dear , Am currently facing issues with the script to calculate "Total time to complete" from status Open (To Do) - Complete (Close).
Could you please help us with a script to fulfill this requirement. Let us know if it is possible to calculate the time from "To Do" status in workflow?
Thanks in advance
Phaneendra Babu B
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.