Excel
QUOTIENT function in Excel
Returns the integer portion of a division
=QUOTIENT(numerator, denominator)QUOTIENT syntax and parameters
Two arguments, two required.
- numeratornumberRequired
The dividend.
- denominatornumberRequired
The divisor.
QUOTIENT examples
Formulas you'll actually reuse.
Full boxes of 12 — the integer part of the division:
=QUOTIENT(B2, 12)Result
8Minutes shown as hours and minutes:
=QUOTIENT(B2, 60) & "h " & MOD(B2, 60) & "m"Result
"2h 15m"
QUOTIENT in Google Sheets
Same name — your formula ports as-is.
Try QUOTIENT in the playground
Edit the example — nothing to install.
Preloaded with the QUOTIENT formula from Example 1 — change anything and watch it respond.
Loading the editor…
QUOTIENT errors
What they mean — and the fixes.
#DIV/0!The denominator is 0 or an empty cell.
Related functions
More ways Excel gets this done.
- ABSReturns the absolute value of a numberMathGoogle Sheets
- ACOSReturns the arccosine of a numberMathGoogle Sheets
- ACOSHReturns the inverse hyperbolic cosine of a numberMathGoogle Sheets
- ACOTReturns the arccotangent of a numberMathGoogle Sheets
- ACOTHReturns the hyperbolic arccotangent of a numberMathGoogle Sheets
- AGGREGATEReturns an aggregate in a list or databaseMathNo Google Sheets equivalent