QUOTIENT

The QUOTIENT function returns the integer quotient of two numbers. Both arguments are number values.

QUOTIENT(dividend, divisor)

dividend: A number to be divided by another number.

divisor: A number to divide into another number. If divisor is 0, a division by zero will result and the function will return an error.

Notes

Examples

=QUOTIENT(5, 2) returns 2, because 5 divided by 2 is 2.5 and the fractional part is ignored.

=QUOTIENT(5.99, 2) returns 2, because 5.99 divided by 2 is 2.995 and the fractional part is ignored.

=QUOTIENT(-5, 2) returns -2, because -5 divided by 2 is -2.5 and the fractional part is ignored.

=QUOTIENT(-6, -2) returns 3, because -6 divided by -2 is exactly 3.

=QUOTIENT(5, 6) returns 0, because 5 divided by 6 is 0.833333333333333 and the fractional part is ignored.

See also
MOD