Formating Cells for Time

  • Thread starter Thread starter Steven_Phillips77
  • Start date Start date
S

Steven_Phillips77

I have formatted each cell as a time cell. I would like to take the
time, 4 minutes 30 seconds and 20 one hundredth of a second, use a
formula in column B and multiply column A by 0.225. Have the results
diplayed as, 1 minute, 00 seconds and 75 one hundredth of a second.


Column A Column B
4:30.20 1:00.75

Could someone please Help?
 
I can't tell if you want the results to be text or you wasnt column B to show
that particular number
column B is not thew reult of multiplying 4:30.20 *.225
the results for that would be 1:00.80 or 1:00.795
if you are getting

make sure your time format is custom mm:ss.00
 
if it is the text results you could use
=TEXT(A1*0.225,"m")&" minute"&IF(MINUTE(A1*0.225)=1,", ","s,
")&TEXT(A1*0.225,"s")&"seconds"&IF(SECOND(A1*0.225)=1," and ","s and
")&RIGHT(TEXT(A1*0.225,"m:s.00"),2)&" one hundreth of a second"
 
Back
Top