+ Reply to Thread
Results 1 to 6 of 6

Footage to seconds (# to mm:ss).

  1. #1
    Registered User
    Join Date
    11-09-2005
    Posts
    3

    Footage to seconds (# to mm:ss).

    I was wondering if anyone might be so kind as to help me with a formula. I currently have 1000s of film items entered on a spreadsheet with length indicated by number of feet. I know that each 1.66666666 feet is worth one second of running time. Is there a way to just apply a formula and have results displayed as mm:ss rounded to the nearest second?
    AD

  2. #2
    Peo Sjoblom
    Guest

    Re: Footage to seconds (# to mm:ss).

    One way, assume the range with films are called MyRange (replace it with
    cell references like A1:A1000 or something), then you can get the mm:ss like

    =INT(SUM(MyRange)/1.66666666)/24/60/60


    --

    Regards,

    Peo Sjoblom

    "a_dunn69" <[email protected]> wrote in
    message news:[email protected]...
    >
    > I was wondering if anyone might be so kind as to help me with a formula.
    > I currently have 1000s of film items entered on a spreadsheet with
    > length indicated by number of feet. I know that each 1.66666666 feet is
    > worth one second of running time. Is there a way to just apply a formula
    > and have results displayed as mm:ss rounded to the nearest second?
    > AD
    >
    >
    > --
    > a_dunn69
    > ------------------------------------------------------------------------
    > a_dunn69's Profile:

    http://www.excelforum.com/member.php...o&userid=28680
    > View this thread: http://www.excelforum.com/showthread...hreadid=483597
    >




  3. #3
    Michael Malinsky
    Guest

    Re: Footage to seconds (# to mm:ss).

    In A1, put the number of feet of film you have. In B1, put the
    following formula:

    =A1/1.67*0.000694444444444442

    custom format as [h]:mm:ss

    This should give you what you want.


  4. #4
    Registered User
    Join Date
    11-09-2005
    Posts
    3
    Thanks for the quick responses.

  5. #5
    bpeltzer
    Guest

    RE: Footage to seconds (# to mm:ss).

    If the number of feet is in A2, then =A2/1.66666666/(24*60*60)
    Divide by 1.6666 to get to seconds, then divide by 24*60*60 to get fractions
    of a day, since Excel equates the number 1 to a day. Then just format,
    number, custom h:mm:ss.

    "a_dunn69" wrote:

    >
    > I was wondering if anyone might be so kind as to help me with a formula.
    > I currently have 1000s of film items entered on a spreadsheet with
    > length indicated by number of feet. I know that each 1.66666666 feet is
    > worth one second of running time. Is there a way to just apply a formula
    > and have results displayed as mm:ss rounded to the nearest second?
    > AD
    >
    >
    > --
    > a_dunn69
    > ------------------------------------------------------------------------
    > a_dunn69's Profile: http://www.excelforum.com/member.php...o&userid=28680
    > View this thread: http://www.excelforum.com/showthread...hreadid=483597
    >
    >


  6. #6

    Re: Footage to seconds (# to mm:ss).

    Two steps to think about
    first convert feet into seconds
    then convert number of seconds into a time as understood by Excel

    Your conversion factor of 1.66666... would be better thought of as 5/3
    so feet*3/5 = seconds

    next the time bit. If you format a cell as date or time, Excel treats 1as
    a day which is 24 hours or 1440 min (24*60) or 86400 sec (24*60*60)
    so seconds/24/60/60 formatted as time will display correctly
    however because you want mm:ss custom format as [mm]:ss
    the [ ] allow the mm to go above 59 without showing hours

    If you do want hours [hh]:mm:ss

    In full if feet value is in A1
    formula is =A1*3/5/24/60/60
    Custom formated [mm]:ss

    hth RES


+ 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