This function, when calculated, divides the number by the divisor, discards the fractional part of the result and returns the integer part.
Quotient([Number], [Divisor])
Where:
Number is the number, or reference to a number, that you want to divide.
Divisor is the number that you want to divide by.
Rule | Meaning |
---|---|
Quotient(TotalCostTextBoxReturn, QuantityTextBoxReturn) | The Quotient function will divide the return value from the TotalCostTextBox, by the return value from the QuantityTextBox. The integer part of the result will be returned, with the remainder discarded. |
TotalCostTextBoxReturn Value | QuantityTextBoxReturn Value | Result of the Quotient function |
---|---|---|
12 | 5 | 2 |
100 | 9 | 11 |
-20 | 6 | -3 |