» Converting Time to Decimal Values
CATEGORY - Excel Time
VERSION - All Microsoft Excel Versions
Use the HOUR and MINUTE formulas to extract the hour and minute numbers from the time.

Book Store:
Recommended Books:
- The Accounting Game : Basic Accounting Fresh from the Lemonade Stand
- The South Beach Diet: The Delicious, Doctor-Designed, Foolproof Plan for Fast and Healthy Weight Loss
- The Laws of Money, The Lessons of Life: Keep What You Have and Create What You Deserve
- Understanding Financial Statements
- The One Page Business Plan: Start With a Vision, Build a Company!
- Personal Finance for Dummies
Coverting Minutes to Hours and Minutes
John C. Roberts
I would like to take the number of minutes it takes to accomplish a process, then add the minutes total for a week for that particular process, then convert the total minutes to the number of hours and minutes it took to accomplish these processes for the week
Good idea
vba maniac
=(V4-INT(V4))*24 is working also with seconds and fractials
excel's way
ac
((a1)*1440)/60
Converting elapsed time [H:M] to minutes in Excel
jcoffey
The formula =HOUR(H18-F18)*60+MINUTE(H18-F18) works as long as everything is within the same time phase (AM or PM) however when I enter times that span both, such as [11:59 PM and 12:17 AM] I get an overflow error. I know this is because Excel has a problem with negative time values but there must be a way to get the result I need. What am I doing wrong?
Converting elapsed time [H:M] to minutes in Excel
Dan Piercy
Although i am sure there is a better way to solve your problem the solution i use is dependent of using the 24 hour clock, in your above example i would put 23:59 and 24:17 and this will give you the correct result.
This can be extended to what ever time you need for example 4am would be 28:00. Let me know if this helps in your situation.
Coverting Time to decimal Numbers
Ola Adeyemi
The tips above offers the most easy to apply methods in respect of the above problems.
I hve been strugling with these problems within the last 24 hours.
I am very happy to find a solution via your tips.
Thanx for posting your tips online.
Ola
Coverting time to decimal
Jimmy
Hi
This is the quickest that works for me
Using the ratio
1 hour = 0.041666667
thus
time to decimal
=[your time]/0.041666667
format that cell to a number
Analog to Decimal
Harvey Riddle
To convert analog hours and minutes (2:30) to a decimal value (2.5 hours) use the following
=(HOUR(A1)*60+MINUTE(A1))/60
where A1 is the cell containing the analog time


=(V4-INT(V4))*24
where v4 is a cell containg a time value
if v4= 12:35 it returns a value of 12.58