Returns the quotient without a remainder.
=QUOTIENT(numerator, denominator)
| Parameter | Description |
|---|---|
numerator |
The number to be divided. |
denominator |
The number to divide by. |
The number 5 divided by 2 returns 2.5, since 2 goes into 5 two and a half times:
=5/2 // returns 2.5
With the QUOTIENT function, the decimal portion is discarded:
=QUOTIENT(5,2) // returns 2
Other examples:
=QUOTIENT(3,5) // returns 0
=QUOTIENT(25,5) // returns 5
=QUOTIENT(10,3) // returns 3