Forum Discussion
Format a number like 34.8 as 34 min 48 sec
- Jul 26, 2019You may have to break down the time by yourself. For example, A1 = 80.1234 
 The minute part in B1 = "=INT(A1)" to get the number 80 as minute.The second part in C1 = "=(A1-INT(A1))*60" to get the second (7.4) In D1, you may concatenate the string as "= B1 & " min " & C1 & " sec" " You may also consider the function TIME and write the formula in D1 as = TIME(0,B1,C1) and then custom the cell format as " m "min" s "sec" ". Hope that this help you. 
You may have to break down the time by yourself. 
For example, A1 = 80.1234
The minute part in B1 = "=INT(A1)" to get the number 80 as minute.
The second part in C1 = "=(A1-INT(A1))*60" to get the second (7.4)
In D1, you may concatenate the string as "= B1 & " min " & C1 & " sec" "
You may also consider the function TIME and write the formula in D1 as = TIME(0,B1,C1) and then custom the cell format as " m "min" s "sec" ".
Hope that this help you.
- crfraserJul 26, 2019Copper ContributorYou could change the approach slightly and get it all in one cell: =INT(A1)&" Min "&ROUND((A1-(INT(A1)))*60,0)&" Sec" 
- perkin_warbeckJul 26, 2019Brass ContributorMan Fai Chan Thank you. That's a great answer!