Share via

Converting a total number of minutes to hours and Minutes

Anonymous
2010-08-16T20:16:36+00:00

If I have for example 115 minutes then I divide by 60; I get 1.92 which is correct, but I need the .92 to display as the actual number of minutes.

Thanks

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
  1. Anonymous
    2010-08-17T20:23:01+00:00

    Try dividing the 115 minutes by 1440 (number of minutes in a day) and then format the cell however you want. For example, h:mm or h.mm or any other way you might want.

    100+ people found this answer helpful.
    0 comments No comments

8 additional answers

Sort by: Most helpful
  1. Anonymous
    2015-12-01T22:09:09+00:00

    =INT(yourm inutes/60)&" : "& TEXT(ROUNDUP(MOD(yourm inutes,60),0),"00")

    Where yourminutes = 72, produces "1 : 12"

    10+ people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2010-08-17T20:29:42+00:00

    If I have for example 115 minutes then I divide by 60; I get 1.92 which is correct, but I need the .92 to display as the actual number of minutes.

    Thanks

    Not real clear what you're wanting.

    A1 = 115

    =TIME(0,A1,0)

    Formatted as h:mm will return 1:55.

    Is that what you had in mind?

    What kind of range of minutes will you have? If the number of minutes, when converted to h:mm, will be greater than 24 hours then use this format [h]:mm.

    --

    Biff

    Microsoft Excel MVP

    5 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2010-08-16T21:22:23+00:00

    If I have for example 115 minutes then I divide by 60; I get 1.92 which is correct, but I need the .92 to display as the actual number of minutes.

    Thanks

    Subtract 60 and get 55 minutes.


    Ron

    2 people found this answer helpful.
    0 comments No comments