QUOTIENT

The QUOTIENT function divides two numbers and returns only the integer part of the result, discarding the rest.

Syntax

QUOTIENT(
    numerator,
    denominator
)

Parameters
  • numerator: Dividend or numerator of the division or reference to a column containing this value.
  • denominator: Divisor or denominator of the division or reference to a column containing this value.
Returned value

The QUOTIENT function returns an integer.

Additional Information

The True and False values are interpreted as 1 and 0, respectively. If any of the arguments is not a number (or a Boolean), the QUOTIENT function returns an error.

Examples

In this example we calculate the integer part of the division of the numbers 7 and 2:

QUOTIENT function. Example of use

Related functions
Category
Mathematical and trigonometric
Submitted by admin on Tue, 12/04/2018 - 12:19