I have a report that shows work undertaken on different jobs and the time taken for all jobs in minutes. I want to convert the total minutes to hour and minutes to show overall time elapsed. I can do it so it shows hours and proportion of hours i.e. 6.333 where the .333 is one third but how do I make it show 6:20 meaning sis hours twently minutes? At the moment I am using this:
=Sum([TotalMinutes])/60 & Format([TotalMinutes] Mod 60,"\:00")
but as said it only gives the proportion of minutes in the hour.
=Sum([TotalMinutes])/60 & Format([TotalMinutes] Mod 60,"\:00")
but as said it only gives the proportion of minutes in the hour.