how do I convert seconds to minutes:seconds

Carrie Ward 20 Reputation points
2025-08-11T12:28:58.6433333+00:00

I want to convert this number 261 seconds to minutes in this format but I can't remember how I did this :( User's image 12:04:21 AM

Microsoft 365 and Office | Excel | For business | Windows
0 comments No comments
{count} votes

Accepted answer
  1. IlirU 331 Reputation points Volunteer Moderator
    2025-08-11T13:50:45.25+00:00

    User's image

    Put the number in cell A2 and apply this formula:

    =A2 / (24 * 60 * 60)

    In Format Cell choose the Time (see the screenshot above).

    Or you can use this formula which outputs the result as text but in time format:

    =TEXT(A2 / (24 * 60 * 60), "hh:mm:ss AM/PM")

    HTH.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. HansV 460.6K Reputation points MVP Volunteer Moderator
    2025-08-11T13:24:55.33+00:00

    Let's say you have 261 in cell D2. In another cell, for example E2, enter the formula

    =D2/86400

    and format the cell with the formula as mm:ss or hh:mm:ss

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.