Divides two numbers and returns only the whole-number part.
QUOTIENT divides and throws away the remainder. 47 divided by 12 is 3.9166, so =QUOTIENT(47, 12) is 3. It is the other half of MOD: one gives you how many whole times something fits, the other gives you what is left over.
Together they answer packing questions completely. 47 items into boxes of 12 is 3 full boxes with 11 left over — QUOTIENT gives the 3 and MOD gives the 11. Either alone tells you half the story.
It is worth knowing that INT and TRUNC do almost the same thing on the result of a division, and differ on negatives: QUOTIENT and TRUNC cut toward zero, so -47/12 gives -3, while INT rounds down the number line and gives -4.
=QUOTIENT(numerator, denominator)numeratordenominatorHeaders in row 1, data in A2:D5.
| A | B | C | D | |
|---|---|---|---|---|
| 1 | Item | On hand | Per box | Adjustment |
| 2 | Cordless drill | 47 | 12 | -8 |
| 3 | Extension lead | 140 | 24 | 15 |
| 4 | Safety goggles | 63 | 18 | 0 |
| 5 | Work gloves | 210 | 30 | -22 |
=QUOTIENT(B2, C2)Result: 3
47 items make 3 full boxes of 12. The leftovers are discarded.
=MOD(B2, C2)Result: 11
The other half of the answer: 11 items left over after those 3 boxes.
=QUOTIENT(B4, C4)Result: 3
63 into boxes of 18 gives 3 full boxes, with 9 remaining.
=QUOTIENT(B2, C2) & " boxes + " & MOD(B2, C2) & " loose"Result: 3 boxes + 11 loose
The pair used together, which is how packing lists are actually written.
Reading about a formula is not the same as writing one. Open this function's exercise and type it into a real grid — you get instant feedback on exactly which cell is wrong and why.
Why it happens: The denominator is zero or a blank cell being read as zero.
How to fix it: Guard it with IFERROR, or test the denominator before dividing.
Why it happens: One of the arguments is text.
How to fix it: Both must be numeric. QUOTIENT does not coerce text the way some operators do.
Why it happens: QUOTIENT truncates toward zero, so -47 divided by 12 is -3 rather than -4.
How to fix it: Use INT if you want rounding down the number line instead. The two agree on positive numbers and differ on negative ones.
Normal division returns the exact answer including decimals; QUOTIENT returns only the whole-number part. 47/12 is 3.9166 while QUOTIENT(47, 12) is 3.
On positive numbers, nothing. On negatives they diverge: QUOTIENT truncates toward zero and INT rounds down the number line, so QUOTIENT(-47, 12) is -3 and INT(-47/12) is -4.
Use QUOTIENT for the boxes and MOD for the leftovers, both with the same two arguments. They are two halves of one division and are almost always used together.
Longer reads where this function does real work in a real sheet.