Share via

Convert Hours and Mins

Amber Coombes 0 Reputation points
2026-05-25T19:57:32.2066667+00:00

How do I convert hours and mins to a decimal in excel?

Microsoft 365 and Office | Excel | For business | Windows
0 comments No comments

2 answers

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  2. Marcin Policht 90,725 Reputation points MVP Volunteer Moderator
    2026-05-25T20:29:38.6566667+00:00

    In Excel, time is stored as a fraction of a day, so one full day equals 1. That means one hour is 1/24 and one minute is 1/1440. To convert a time value into decimal hours, you usually just multiply the Excel time by 24.

    If your value is a proper time like 2:30 in cell A1, the conversion to decimal hours is:

    =A1*24
    

    So 2:30 becomes 2.5 because 2 hours plus 30 minutes is two and a half hours.

    If your hours and minutes are in separate cells, for example hours in A1 and minutes in B1, you can combine them like this:

    =A1 + B1/60
    

    That converts minutes into fractional hours and adds them to the hours.

    If instead you already have a time value but Excel is displaying it oddly, you may also need to change the cell format to General or Number after applying the formula so you can see the decimal result rather than a time format.


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.