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
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
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")
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??
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
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks