how to convert time from second to Hours in report
Accepted answer
How about like this? DOUBLE(T1.ACTUAL_WORK/3600) and DOUBLE(T1.PLANNED_WORK/3600)
Reference:
https://jazz.net/forum/questions/238015/jrs-report-builder-v602-db2-sql-percentage-conversion-of-actual_work-divided-by-planned_work-does-not-work
https://jazz.net/forum/questions/235705/how-would-i-add-a-column-to-my-report-builder-report-that-gives-me-the-percentage-of-time-spent-actual-work-to-my-estimate-planned-work
Comments
I'm trying to do the same thing, and I've not been able to get the calculations to work properly. Any help on this would be greatly appreciated. The bold "actual work and planned work" is what I need to divide by 3600 to turn into hours.
Hello
What version of ReportBuilder and CLM are we talking about here?
JRS 5.0.2 and CLM 5.0.2
This worked:
INT(T1.ACTUAL_WORK/3600) as TimeSpent,
INT(T1.PLANNED_WORK/3600) as Estimate,