Hi - I have a column showing duration in seconds, and I want it to display in minutes and seconds (instead of 78 seconds, I want to see 1 minute 18 seconds).
How do I do this simply? (excel 2002)
thanks
Rachel
Hi Rachel - try this formula
=INT(A1/60)&"m "&A1-(INT(A1/60)*60)&"s"
where your time in seconds is in A1. This will produce
1m 6s for 66 or 1m 18s for 78
If you want the words "Minute(s)" and "Second(s)" you'll need an IF statement to check whether it's 1 or more than 1 and adjust the grammer appropriately
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.