+ Reply to Thread
Results 1 to 4 of 4

convert seconds to minutes and seconds

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    06-30-2006
    Posts
    116

    convert seconds to minutes and seconds

    Hello,

    If I have 155 seconds in a cell. How can I convert that to minutes and seconds (ex 155 will be 2:35). tks

  2. #2
    Registered User
    Join Date
    02-19-2007
    Posts
    24
    I don't know if it can be done with a format. If you use this formula, it can format it as text (assumes the seconds are in A1)

    =TEXT(A1/60, "00")&":"&TEXT(MOD(A1,60), "00")

  3. #3
    Forum Contributor
    Join Date
    06-30-2006
    Posts
    116
    tks,

    something is not quit correct..for 180 seconds it returns 3:00 which is correct. For 155 seconds it's returning 3:35 which is wrong.why is that??

  4. #4
    Forum Contributor
    Join Date
    06-30-2006
    Posts
    116
    got it to work..

    =TEXT((A1-MOD(A1,60))/60, "00")&":"&TEXT(MOD(A1,60), "00")

    made minor modification to ur formula ..Tks a lot

+ 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