problem formatting mins to HR:Min:Secs in excel

neuropsychiatry

New Member
Joined
Jan 22, 2019
Messages
5
I have a list of times in minutes and want to convert to HR:Min:Secs but none seem to convert correctly. I am using custom format > hr:min:secs, no formula as such. thank you.

here is the list in mins >> converts to.....
99.7885835 >> 18:55:34
98.4892897>> 11:44:35
99.0356582>> 00:51:21
99.521531>>12:31:00

<tbody>
</tbody>


thank you!
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Try

=TIME(0,INT(A1),60*MOD(A1,1))

Code:
[TABLE="width: 174"]
<colgroup><col width="87" span="2" style="width: 65pt;"></colgroup><tbody>[TR]
[TD="width: 87, align: right"]99.7885835[/TD]
[TD="class: xl63, width: 87, align: right"]1:39:47[/TD]
[/TR]
[TR]
[TD="align: right"]98.4892897[/TD]
[TD="class: xl63, align: right"]1:38:29[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
Hi, yes I can replicate 99.7885835 converting to 18:55:34.

Are you saying that is NOT what you want ?
In which case what DO you want ?
Do you want 1:39:47 ?
If yes, you'll need to use a formula to divide each of your entries by 1440 (the number of minutes in a day).

Excel is actually reading your data as 99 days and 0.7885835 of a day, which is 18:55:34.
 
Upvote 0

Forum statistics

Threads
1,215,891
Messages
6,127,606
Members
449,388
Latest member
macca_18380

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top