As an alternate to the two-stage calculation, there is "ugly" formula...
=TEXT(A1/86400,"[m] \m\i\n\u\t\e\s a\n\d s \s\e\c\o\n\d\s")
or using a function call instead of the division by 86400 (=24*60*60)...
=TEXT(TIME(0,0,A1),"[m] \m\i\n\u\t\e\s a\n\d s \s\e\c\o\n\d\s")
Although, we can shortened these formulas slightly by not "escaping" the pattern string's non-metacharacters...
=TEXT(A1/86400,"[m] \mi\nut\e\s a\n\d s \s\eco\n\d\s")
(similar for the second formula).
Rick
Erika said:
I have a phone report that is displaying total time is seconds, for example I
get 2136 seconds. How do I convert that to minutes and seconds?