• New here? Register here now for access to all the forums, download game torrents, private messages, polls, Sportsbook, etc. Plus, stay connected and follow BP on Instagram @buckeyeplanet and Facebook.
id like to format something in excel.

basically the inputs are for expample 200 minutes.

I would like to format so it says 3hr 20min

greenies to the first person to know how to do it an explain it in a way i can understand...
 
Closest thing I can come up with is to use the formula A1/1440 and set the field to hh:mm

Put the formula in the field you want the hh:mmm to appear and enter the total minutes in the field represented in the formula.

so for formula A1/1440, enter 200 in A1 and format the cell with the formula to hh:mm it will show 3:20
 
Upvote 0
Try this excel formula:

=CONCATENATE((HOUR((A5/24/60))),"hr ",(MINUTE(A5/24/60)),"min")

The number of minutes (e.g. 200) is in cell A5 (or whatever other cell).

If you put 200 in A5, what the formular yields is: "3hr 20min".

EDIT: I think you'll be able to use this formula without any special field/cell formatting.
 
Upvote 0
shetuck;1253923; said:
Try this excel formula:

=CONCATENATE((HOUR((A5/24/60))),"hr ",(MINUTE(A5/24/60)),"min")

The number of minutes (e.g. 200) is in cell A5 (or whatever other cell).

If you put 200 in A5, what the formular yields is: "3hr 20min".

EDIT: I think you'll be able to use this formula without any special field/cell formatting.

fucking brilliant
 
Upvote 0
Back
Top