Convert Minutes to Hours and Minutes in Excel (3 Easy Methods)
Free formula generator
Open TEXT formula generatorConverting minutes to hours and minutes in Excel is simple once you know how Excel stores time internally. Here are three reliable methods.
Method 1: Division (Quickest)
Excel stores time as a fraction of 24 hours. To convert minutes to an Excel time value:
=A2/1440
Then format the cell as h:mm (Custom number format). For example, 90 minutes → 1:30.
Method 2: TEXT Function (Display Only)
Use TEXT to return a formatted string directly:
=TEXT(A2/1440,"h:mm")
Output: "1:30" as text. Good for display, but cannot be used in further calculations.
Method 3: INT and MOD (Separate Hours and Minutes)
To get hours and minutes as separate numbers:
Hours: =INT(A2/60)
Minutes: =MOD(A2,60)
Then combine with TEXT:
=INT(A2/60)&" hrs "&MOD(A2,60)&" mins"
Output: "1 hrs 30 mins"
Convert Large Values (Over 24 Hours)
For totals over 24 hours (e.g., project tracking), use the custom format [h]:mm — the square brackets prevent the hour from resetting at 24.
FAQ
How do I convert minutes to hours in Excel?
Divide by 60 for decimal hours (=A2/60), or divide by 1440 and format as h:mm for hours:minutes display.
How do I show time as 1h 30m in Excel?
=INT(A2/60)&"h "&MOD(A2,60)&"m"
Why does Excel show #### when I enter time?
The column is too narrow. Widen it, or the value is negative (Excel can't display negative times by default).
📋 Related Formula Tools
Want to generate the formula directly? Try our free formula generators:
📬 Get Weekly Excel Tips
Join thousands of Excel users who receive our weekly formula tips, tricks, and productivity hacks.
Subscribe Free →📖 Continue Reading
How to Get First Word from Cell in Excel (3 Formulas Compared)
Learn 3 Excel formulas to extract the first word from a cell — LEFT+FIND for all versions, TEXTBEFORE for Excel 365. Step-by-step with examples.
How to Calculate Percentage Increase in Excel — Formula & Examples | SheetMaster
Master the Excel percentage increase formula in under 2 minutes. Step-by-step with real examples for sales growth, revenue tracking & YoY comparisons. Copy the formula, done.
Excel Formula to Find Duplicates in Two Columns (Step-by-Step)
Find duplicate values across two columns in Excel using COUNTIF, VLOOKUP, and conditional formatting. Includes formulas to highlight and extract duplicates.
Calculate Business Days Between Two Dates in Excel (NETWORKDAYS)
Use the NETWORKDAYS and NETWORKDAYS.INTL functions to calculate the number of business days between two dates in Excel. Includes examples and holiday handling.