Conversion of time

merrellpa

New Member
Joined
Mar 9, 2009
Messages
7
I have a Cell that calculates the difference between 2 times. It works great, and displays the results in a HH:MM:SS format.

I need to take that and convert the time to minutes only...

A3 = The result from above (Example: 3:23:45)
B3 = a set time (10 hours)

My formula is:

(A3 converted to minutes)/((B3*60)-90)*10


If i can convert A3 to minutes this calculation will work cause it is a whole number. Anyone have any idea how to do this?
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Regardless of the number format used to store a time, Excel stores this a decimal fraction of a day. E.g. 0.25 = 6 hours = 360 minutes.

How about something:
=A3*(24*60)
 
Upvote 0
The formula
=TEXT(A3,"[m]")+0 will return the number of minutes in the time in A3.

Or you could use =A3 and format the cell [h] to keep everything in Excel serial time.
 
Upvote 0

Forum statistics

Threads
1,203,601
Messages
6,056,212
Members
444,850
Latest member
dancasta7

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top