QUOTIENT DAX Function (Math and Trig)
Returns the integer portion of a division.
Syntax
Parameter | Attributes | Description |
---|---|---|
Numerator |
The dividend. |
|
Denominator |
The divisor. |
Return values
Returns only the integer portion of the division result.
Examples
QUOTIENT ( 0, 2 ) -- returns 0 QUOTIENT ( 1, 2 ) -- returns 0 QUOTIENT ( 4, 2 ) -- returns 2 QUOTIENT ( 5, 2 ) -- returns 2 QUOTIENT ( 6, 2 ) -- returns 3 QUOTIENT ( 6, 3 ) -- returns 2 QUOTIENT ( 7, 3 ) -- returns 2
Related functions
Other related functions are:
Last update: Jan 11, 2021 » Contribute » Show contributors
Contributors: Alberto Ferrari, Marco Russo
MSDN documentation: https://docs.microsoft.com/en-us/dax/quotient-function-dax