CONVERT Hours:Minutes to Minutes

J

Jane

I am working with elapsed time. Col A holds admission
date/time, Col B holds discharge date/time, and Col C
holds formula to calculate elapsed time, in hours and
mintues. I would like to convert Col C to minutes,
i.e. 6:28(hr:mm) to 388 (minutes). Is this possible? I
tried CONVERT, maybe there is another way . Thanks, Jane.
 
P

Peo Sjoblom

Even simpler would be

=A1*1440

format as general where A1 holds 6:28

--

Regards,

Peo Sjoblom


Paul Corrado said:
Not sure which of these solutions you are looking for

To show minutes elapsed use Format/Cell Custom and enter [mm]:ss (This will
leave the value as a partial day or in your case of 338 minutes 0.2694444)

To convert to minutes

=HOUR("endtime"-"starttime")*60+MINUTE("endtime"-"starttime") (This will
convert the value to 338)

HTH

PC





Jane said:
I am working with elapsed time. Col A holds admission
date/time, Col B holds discharge date/time, and Col C
holds formula to calculate elapsed time, in hours and
mintues. I would like to convert Col C to minutes,
i.e. 6:28(hr:mm) to 388 (minutes). Is this possible? I
tried CONVERT, maybe there is another way . Thanks, Jane.
 
J

Jane

Thanks Peo - Works great!!
-----Original Message-----
Even simpler would be

=A1*1440

format as general where A1 holds 6:28

--

Regards,

Peo Sjoblom


Not sure which of these solutions you are looking for

To show minutes elapsed use Format/Cell Custom and
enter [mm]:ss (This
will
leave the value as a partial day or in your case of 338 minutes 0.2694444)

To convert to minutes

=HOUR("endtime"-"starttime")*60+MINUTE("endtime"- "starttime") (This will
convert the value to 338)

HTH

PC





Jane.


.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Calculate between start and end times 2
Elapsed Time Formula 6
Calculate elapsed time excluding specific timeframe 10
Add Time Q 4
Time Calculation 3
Formula Needed 8
countif function 8
Time/priority problem 2

Top