Returns the quotient when numerator is divided by the denominator, and drops the remainder.
quotient( numerator, denominator)
numerator: (Decimal) The numerator of the quotient, or the number that is divided.
denominator: (Decimal) The denominator of the quotient, or the number to divide by.
Integer
You can experiment with this function in the test box below.
Test Input
The denominator value cannot be 0
.
quotient(8.0,3.0)
returns 2
On This Page