This function discards the reminder and returns the integer component of a division. We will obtain 2 as the solution for =QUOTIENT(5, 2) since 2 x 2 is four and the leftover 1 is eliminated. =QUOTIENT(7, 2) returns 3 since 2 x 3 equals 6 and the remainder 1 is eliminated.
Syntax:
=QUOTIENT(numerator, denominator)
Parameters:
Example :
=QUOTIENT(7, 2), Integer portion of 7/2 is 3.
=QUOTIENT(9, 2), Integer portion of 9/2 is 4.
=QUOTIENT(5.5, 4.1), Integer portion of 4.5/3.1 is 1.
=QUOTIENT(-13, 4), Integer portion of -10/3 is -3.
Ask Your Query