QUOTIENT DAX Function in Power BI
The QUOTIENT DAX function performs division and returns only the integer portion of the division result. Use this function when we want to discard the remainder of division.
DAX Syntax QUOTIENT(numerator, denominator)
The function has the following parameters:
- numerator: The dividend, or number to divide.
- denominator: The divisor, or number to divide by.
Example: Let’s create a measure, with th following dax formula:
DAX
QUOTIENT DAX Measure = QUOTIENT(-50,4)
The output of the above measure is shown in the card visual as shown in the image below:
