Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Hi
I'm using the simple formula =a1/(24*60) to convert my seconds to minutes. Then I'm formatting the cell to Time (xx:xx:xx) However, as my seconds are very large, the time looks a bit confusing. ie:- 9065378 seconds converts to 151089:38:00 How can I convert the seconds to minutes but also include a comma as a seperator? Or any other suggestions? |
#2
![]() |
|||
|
|||
![]()
One way:
=TEXT(INT(A1/60),"#,##0:")&RIGHT(TEXT(A1/1440,"hh:mm"),2) In article , "Anthony Slater" wrote: Hi I'm using the simple formula =a1/(24*60) to convert my seconds to minutes. Then I'm formatting the cell to Time (xx:xx:xx) However, as my seconds are very large, the time looks a bit confusing. ie:- 9065378 seconds converts to 151089:38:00 How can I convert the seconds to minutes but also include a comma as a seperator? Or any other suggestions? |
#3
![]() |
|||
|
|||
![]()
Thanks M8
That worked a treat !! "JE McGimpsey" wrote: One way: =TEXT(INT(A1/60),"#,##0:")&RIGHT(TEXT(A1/1440,"hh:mm"),2) In article , "Anthony Slater" wrote: Hi I'm using the simple formula =a1/(24*60) to convert my seconds to minutes. Then I'm formatting the cell to Time (xx:xx:xx) However, as my seconds are very large, the time looks a bit confusing. ie:- 9065378 seconds converts to 151089:38:00 How can I convert the seconds to minutes but also include a comma as a seperator? Or any other suggestions? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding minutes to time | Excel Discussion (Misc queries) | |||
Avoid user having to enter 00 hours when using [mm]:ss format | Excel Discussion (Misc queries) | |||
Formula for time | Excel Discussion (Misc queries) | |||
How do I convert times from hours to minutes? | Excel Discussion (Misc queries) | |||
Problems calculating total hours | Excel Discussion (Misc queries) |