Syntax
| Parameter | Description |
|---|---|
| numerator | Parameter of the QUOTIENT function. |
| denominator | Parameter of the QUOTIENT function. |
Examples
Full boxes from items
=QUOTIENT(250, 12)
Hours from minutes
=QUOTIENT(475, 60)
Dollar bills needed
=QUOTIENT(A1, 20)
Common Errors
Dividing by zero: =QUOTIENT(10, 0) returns #DIV/0! because division by zero is undefined.
Passing non-numeric arguments like =QUOTIENT("ten", 3) produces this error.
Tips
QUOTIENT gives the whole part, MOD gives the leftover. Together: 250 items = QUOTIENT(250,12) boxes + MOD(250,12) loose items.
QUOTIENT(-7, 2) returns -3, not -4. It truncates toward zero, unlike FLOOR which rounds toward negative infinity.
INT(A1/B1) rounds down (toward negative infinity), while QUOTIENT truncates toward zero. They differ for negative numbers: INT(-7/2)=-4 but QUOTIENT(-7,2)=-3.
Try QUOTIENT in Viztab
Import your data and use QUOTIENT with 370+ other formulas. No signup required.
Open Viztab