Quotient
QUOTIENT Function¶
The QUOTIENT function in Excel returns the integer portion of a division by discarding the remainder. It is useful when you need only the whole number result of a division operation.
Syntax:¶
QUOTIENT(numerator, denominator)
- numerator: The number to be divided.
- denominator: The number by which you want to divide the numerator.
Examples:¶
-
=QUOTIENT(10, 3)would return3because 10 divided by 3 equals 3 with a remainder of 1, and the remainder is discarded. -
=QUOTIENT(25, 4)would return6because 25 divided by 4 equals 6 with a remainder of 1. -
=QUOTIENT(-10, 3)would return-3because the function also works with negative numbers.
Note: If you need the remainder of a division, use the
MODfunction. For example,MOD(10, 3)would return1as the remainder.