+ Reply to Thread
Results 1 to 4 of 4

Time calculator for recording music

  1. #1
    Registered User
    Join Date
    05-18-2021
    Location
    Seattle
    MS-Off Ver
    current
    Posts
    1

    Time calculator for recording music

    I'm looking for a formula that will add time in minutes and seconds for the purpose of recording music.
    For example, the first song is 9 minutes, 9:00.
    the next song would be 4 minutes 40 seconds. 4:40
    the total would be 13 minutes and 40 seconds.

    I would song after song until I found out how much time it would take to record the music.
    Any ideas?

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,926

    Re: Time calculator for recording music

    What you need to understand about dates and times in excel is…

    a date is just a number representing the number of days passed since 1/1/900...and then formatted in a way that we recognize as a date. So, for instance, today (Sat 29 May 2021) is actually 44345

    Time is actually a decimal part of 1 (day), so 06:00 AM is 0.25, 12 noon is 0.5 and 18:00 (or 6 PM) is 0.75

    So, based on that, you could just add the times together and format the answer as time
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Forum Expert
    Join Date
    05-01-2014
    Location
    California, US
    MS-Off Ver
    Excel 2010
    Posts
    1,795

    Re: Time calculator for recording music

    Quote Originally Posted by PGMalan View Post
    the next song would be 4 minutes 40 seconds. 4:40
    When you enter time in the form 4:40, Excel interprets that as 4h 40m, not 4m 40s.

    You must enter the times in the form 4:40.0 or 0:4:40.

    Then, if the individual song times are entered into B2:B11, you simply use the formula =SUM(B2:B11) to calculate the total.

    -----

    You should also format the cells as Custom [m]:ss.

    The format "[m]", instead of just "m", allows for displaying time in minutes that might exceed 60m.

    That is especially important to do for the cell where you calculate the total time.

    But it does not hurt to do it for all time cells. In fact, using the format [m]:ss in all cells might expose data entry errors that "mysteriously" result in incorrect totals.

    -----

    Although you might get away with the simple formula =SUM(B2:B11), it is prudent to explicitly round calculated times to the second, in order to avoid anomalies of internal binary arithmetic.

    So, it would be more reliable to write =--TEXT(SUM(B2:B11),"[h]:m:s"), formatted as Custom [m]:ss.

    The double negation ("--") is one way to convert the text to a numeric result.

  4. #4
    Forum Expert torachan's Avatar
    Join Date
    12-27-2012
    Location
    market harborough, england
    MS-Off Ver
    Excel 2010
    Posts
    4,302

    Re: Time calculator for recording music

    I have adapted one of my recent timer apps to included total elapsed time.
    It should be intuitive to use.
    Any queries post back on this site.
    torachan.
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Time Recording System
    By skate1991 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-19-2017, 06:43 AM
  2. Music scale calculator
    By Rob13003 in forum Excel General
    Replies: 2
    Last Post: 09-26-2015, 08:47 PM
  3. race time time calculation and recording
    By MichaelKEgan in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-26-2012, 04:10 AM
  4. Recording time of change
    By kevie192 in forum Excel General
    Replies: 1
    Last Post: 08-04-2008, 05:19 AM
  5. Time recording in excel
    By mallyg in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 06-28-2008, 02:05 PM
  6. 24+ time recording
    By athlonoc in forum Excel General
    Replies: 1
    Last Post: 09-16-2006, 12:02 PM
  7. recording negative time
    By james in forum Excel General
    Replies: 3
    Last Post: 04-15-2005, 08:06 AM

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