+ Reply to Thread
Results 1 to 4 of 4

Convert Time

  1. #1
    Rob via OfficeKB.com
    Guest

    Convert Time

    Small Problem

    Working a on project with units and time

    1 unit = 5 minutes

    I have a spread shee set up like this

    Units Taken Standard Time Duration Time Converted

    15 5 75 1:15


    My problem is the Time Converted column

    75 minutes = 1 and 15 minutes (1:15)

    I want formula that converts the 75 into 1:15

    Duration in Minutes Minutes Converted Into Hours
    60 1:00
    75 1:15
    91 1:31
    115 1:55



    and so on


    Please Help

  2. #2
    JE McGimpsey
    Guest

    Re: Convert Time

    XL stores times as fractional days, so to convert integer minutes to a
    time, divide by (25 * 60):

    A B C D
    1 15 5 =A1*B1 =C1/1440

    Format D1 as a time. If your times will be over 24 hours, use

    Format/Cells/Number/Custom [h]:mm

    to keep the time from "rolling over".


    In article <[email protected]>,
    "Rob via OfficeKB.com" <[email protected]> wrote:

    > Small Problem
    >
    > Working a on project with units and time
    >
    > 1 unit = 5 minutes
    >
    > I have a spread shee set up like this
    >
    > Units Taken Standard Time Duration Time Converted
    >
    > 15 5 75 1:15
    >
    >
    > My problem is the Time Converted column
    >
    > 75 minutes = 1 and 15 minutes (1:15)
    >
    > I want formula that converts the 75 into 1:15
    >
    > Duration in Minutes Minutes Converted Into Hours
    > 60 1:00
    > 75 1:15
    > 91 1:31
    > 115 1:55
    >
    >
    >
    > and so on
    >
    >
    > Please Help


  3. #3
    Rob via OfficeKB.com
    Guest

    Re: Convert Time

    Actually I found one of your post before and this works just fine

    =INT(A1/60) + MOD(A1,60)/100

    The problem I have now is the cell shows 1 for one hour instead of 1:00

    I tried to format the cell to h:mm but the cell comes up as 0

    Thanks for helping me out btw

  4. #4
    JE McGimpsey
    Guest

    Re: Convert Time

    That's because in time format 1 is evaluated as a whole day. If you
    format the cell with

    Format/Cell/Number/Custom [h]:mm

    you'll see the 0:00 turn to 24:00.


    In article <[email protected]>,
    "Rob via OfficeKB.com" <[email protected]> wrote:

    > Actually I found one of your post before and this works just fine
    >
    > =INT(A1/60) + MOD(A1,60)/100
    >
    > The problem I have now is the cell shows 1 for one hour instead of 1:00
    >
    > I tried to format the cell to h:mm but the cell comes up as 0
    >
    > Thanks for helping me out btw


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1