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:

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:

QUOTIENT dax function in Power BI