Home All Groups Group Topic Archive Search About

converting seconds to mins

Author
18 Nov 2007 7:58 PM
time convertions
I needs to convert seconds to mins how d o i do it in excel

Eg: i need to convert 236 secs to mins how do i do this..

the answer should be 3 mins and 56 secs how do i do this

please help me

Author
18 Nov 2007 8:43 PM
Douglas J. Steele
TimeInSeconds \ 60 & " Mins, " & (TimeInSeconds Mod 60) & " secs.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)


Show quote
"time convertions" <time converti***@discussions.microsoft.com> wrote in
message news:1C2B0736-0A90-444A-9178-C77C07FA099D@microsoft.com...
>I needs to convert seconds to mins how d o i do it in excel
>
> Eg: i need to convert 236 secs to mins how do i do this..
>
> the answer should be 3 mins and 56 secs how do i do this
>
> please help me
Author
19 Nov 2007 3:35 PM
Arvin Meyer [MVP]
Assuming the number of seconds is in A1, the formula would be:


=INT(A1/60) & " mins., " & MOD(A1,60) & " secs."

In the future, your Excel questions may be  better answered in an Excel
newsgroup which is more appropriate to your problem. This newsgroup is
dedicated to the Microsoft Access database product. The Microsoft website is
not all that clear and may have misdirected you.
Show quote
"time convertions" <time converti***@discussions.microsoft.com> wrote in
message news:1C2B0736-0A90-444A-9178-C77C07FA099D@microsoft.com...
>I needs to convert seconds to mins how d o i do it in excel
>
> Eg: i need to convert 236 secs to mins how do i do this..
>
> the answer should be 3 mins and 56 secs how do i do this
>
> please help me

AddThis Social Bookmark Button