Hello! I am looking to build a report with a column that calculates the overall turn time from the Request Entry Date to the Resolve Project's Actual Completion Date - excluding weekends and holidays.
Any help is appreciated :)
Thank you!
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi Kasey,
Use the following text mode to calculate the turnaround time from request entry to project completion.
displayname=Turnaround TIme
textmode=true
valueexpression=ROUND(DIV(WORKMINUTESDIFF({convertedOpTaskEntryDate},{actualCompletionDate}),480),0)
valueformat=HTML
The expression looks at the number of working minutes between the two dates and divides the number of minutes by 480 which is the number of minutes in a standard 8 hour working day. This gives you the total number of days exluding any non working time such as weekends or holidays.
Best Regards,
Rich.
I have a project report that does just that! Try this text mode... I don't know how to exclude holidays, though.
displayname=Response Time Request Entry to Project Completion
textmode=true
valueexpression=WEEKDAYDIFF({convertedOpTaskEntryDate},{actualCompletionDate})
valueformat=HTML
Hi Kasey,
Use the following text mode to calculate the turnaround time from request entry to project completion.
displayname=Turnaround TIme
textmode=true
valueexpression=ROUND(DIV(WORKMINUTESDIFF({convertedOpTaskEntryDate},{actualCompletionDate}),480),0)
valueformat=HTML
The expression looks at the number of working minutes between the two dates and divides the number of minutes by 480 which is the number of minutes in a standard 8 hour working day. This gives you the total number of days exluding any non working time such as weekends or holidays.
Best Regards,
Rich.
Thank you so much, I will give this a try! Would this work best on a Project or Request report?
Views
Replies
Total Likes
No problem Kasey.
This will only work on a Project report.
Views
Replies
Total Likes
Thank you, this works perfectly! Do you know if there is a way to also use text mode to display the original request's entry date on the report?
Appreciate your help!! :)
Views
Replies
Total Likes
HI Kasey,
Glad I could help.
You shouldn't need any text mode to display the original request's entry date in a project report. There is a field called 'Converted Issue Entry Date' available as a column natively within the report builder.
Best Regards,
Rich.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies