QUOTIENT Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel QUOTIENT function returns the integer (whole-number) part of a division, discarding the remainder. It truncates toward zero rather than rounding.


Quick answer:
=QUOTIENT(10,3) = 3

Syntax

=QUOTIENT(numerator, denominator)
ArgumentDescription
numeratorRequiredThe number being divided (the dividend).
denominatorRequiredThe number to divide by. If 0, QUOTIENT returns a #DIV/0! error.

How to use it

QUOTIENT keeps only the whole-number part of a division and drops anything after the decimal point.

=QUOTIENT(10,3) // = 3 (drops the .333)
=QUOTIENT(20,7) // = 2
=QUOTIENT(-10,3) // truncates toward zero = -3

It pairs naturally with MOD: QUOTIENT gives the times-it-goes-in and MOD gives the leftover. Use it to convert units (how many whole dozens in 40 eggs: =QUOTIENT(40,12) = 3).

QUOTIENT truncates toward zero — it does not round. =QUOTIENT(-10,3) = -3, the same way TRUNC drops decimals. Compare with INT, which rounds down (toward negative infinity), so INT(-10/3) = -4.

Try it: interactive demo

Live demo

Pick a QUOTIENT example to see the formula and its result.

Result:

Practice workbook

📊
Download the free QUOTIENT practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Does QUOTIENT round or truncate?
It truncates toward zero, dropping the fractional part. =QUOTIENT(10,3) = 3 and =QUOTIENT(-10,3) = -3 — no rounding occurs.
How is QUOTIENT different from INT?
For negatives they differ: QUOTIENT truncates toward zero while INT rounds down (toward negative infinity). =QUOTIENT(-10,3) = -3 but =INT(-10/3) = -4.
What does QUOTIENT do with the remainder?
It discards it. To get the remainder use MOD; QUOTIENT and MOD together fully describe the division.
What if the denominator is zero?
QUOTIENT returns a #DIV/0! error. Wrap it in IFERROR or test the denominator first.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: MOD · INT · TRUNC · ROUND · ABS