QUOTIENT

Returns the result of a number divided by another.

Sample Usage

QUOTIENT(10,5)
QUOTIENT(A4,A5)

Syntax

QUOTIENT(number1, number2)

  • number1 - The numerator or dividend.
  • number2 - The denominator or divisor.

Examples

QUOTIENT(10,5) returns a value of 2.
QUOTIENT(A4,A5) returns the quotient when A4 is divided by A5.

Notes

  • QUOTIENT performs a division, but returns only the quotient and not the remainder. To see the full result (quotient and remainder), use the DIVIDE function.