
Use the QUOTIENT function to return the
integer portion of a division
The opposite of PRODUCT, which was used in the previous tip, is
QUOTIENT. This function calculates the integer portion of a divi-
sion operation and discards the remainder. To use this function, you
must first install and load the Analysis ToolPak add-in.
QUOTIENT(numerator, denominator)
numerator: The dividend.
denominator: The divisor.
4
To calculate the integer portion:
1. Select cells A2:A10 and enter the number 100.
2. Press <Ctrl+Enter>.
3. In cells B2:B10 enter any values as the divisor.
4. Select cells C2:C10 and type the following formula:
=QUOTIENT(A2,B2).
5. Press <Ctrl+Enter> ...