I have a spread sheet that has two fields for time in minutes in each data row, I need to convert the sum of those two cells into hours:minutes in a new cell. I am currently using the following formula that appears to be working but instead of displaying the correct hours:minutes it is dropping the leading “0” in the minutes section (should be 3:08 but is displayed as 3:8):
=INT((F19+I19)/60)&":"&MOD((F19+I19),60)
F19 and I19 are the cells with the minutes entered by the user, the formula is entered in J19 were the hours:minutes are displayed, again the issue is it is dropping the leading zero for the 8 minutes.
The spread sheet has about 20 lines for logging time, the user enters the minutes in F and I, the spread sheet converts the minutes to hours:minutes and totals the time at the bottom of the column.
Thank You!