# QUOTIENT

## Content

This function returns the integer portion of a division. Use this to ignore the remainder of a division.

## Syntax

`QUOTIENT(numerator, denominator)`

## Arguments

This function has these arguments:

| Argument | Description |
| -------- | ----------- |
| *numerator* | <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;">[</span>Required<span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;">] </span>Numerator or dividend |
| *denominator* | <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;">[</span>Required<span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;">] </span>Denominator or divisor |

## Examples

`QUOTIENT(B8,B10)`
`QUOTIENT(R8B2,R10B2)`
`QUOTIENT(14,4)` gives the result 3