| Line 1: |
Line 1: |
| − | =QUOTIENT(dividend, divisor)= | + | <div style="font-size:30px">'''QUOTIENT (numerator,denominator)'''</div><br/> |
| | | | |
| − | *where <math>dividend</math> is the numerator | + | *<math>numerator</math> is any real value. |
| − | *<math>divisor</math> is the denominator | + | *<math>denominator</math> is any real value. |
| | | | |
| | QUOTIENT() calculates the integer part of division of two numbers. | | QUOTIENT() calculates the integer part of division of two numbers. |
| Line 8: |
Line 8: |
| | == Description == | | == Description == |
| | | | |
| − | QUOTIENT(dividend, divisor) | + | QUOTIENT (numerator,denominator) |
| | | | |
| | For Example, | | For Example, |
| | QUOTIENT(10,2) ''returns 5'' | | QUOTIENT(10,2) ''returns 5'' |
| | | | |
| − | *This function displays the integer part of division of <math>dividend</math> by <math>divisor</math>. | + | *This function displays the integer part of division of <math>numerator</math> by <math>denominator</math>. |
| − | *If <math>dividend</math> or <math>divisor</math> are non-numeric, Calci returns an #ERROR message. | + | *If <math>numerator</math> or <math>denominator</math> are non-numeric, Calci returns an #ERROR message. |
| | *MOD() function can be used to calculate the remainder of division of two numbers. | | *MOD() function can be used to calculate the remainder of division of two numbers. |
| | | | |