DIVIDE DAX Function (Math and Trig)
Safe Divide function with ability to handle divide by zero case.
Syntax
Parameter | Attributes | Description |
---|---|---|
Numerator |
Numerator. |
|
Denominator |
Denominator. |
|
AlternateResult | Optional |
Optional. The alternate result to return when dividing by zero. |
Return values
Result of the division between Numerator and Denominator, or AlternateResult in case there is a division by zero.
Remarks
Alternate result on divide by 0 must be a constant. By default, the AlternateResult argument is BLANK.
DIVIDE is faster than an IF statement checking whether the denominator is zero. However, DIVIDE is executed in the formula engine and it is not as fast as a native division.
» 2 related functions
Examples
-- DIVIDE performs safe division protecting from division by -- zero. In case of zero denominator, it returns its third -- argument that defaults to a blank. DEFINE MEASURE Sales[Unprotected Growth %] = VAR CY = [Sales Amount] VAR PY = CALCULATE ( [Sales Amount], SAMEPERIODLASTYEAR( 'Date'[Date] ) ) RETURN (CY - PY) / PY MEASURE Sales[Protected Growth %] = VAR CY = [Sales Amount] VAR PY = CALCULATE ( [Sales Amount], SAMEPERIODLASTYEAR( 'Date'[Date] ) ) RETURN DIVIDE ( CY - PY, PY, BLANK () ) EVALUATE SUMMARIZECOLUMNS ( 'Date'[Calendar Year], "Unprotected Growth %", [Unprotected Growth %], "Protected Growth %", [Protected Growth %] )
Calendar Year | Unprotected Growth % | Protected Growth % |
---|---|---|
2007-01-01 | Infinity | (Blank) |
2008-01-01 | -0.12222543928588246 | -12.22% |
2009-01-01 | -0.057795348753533114 | -5.78% |
2010-01-01 | -1 | -100.00% |
Related articles
Learn more about DIVIDE in the following articles:
-
DIVIDE Performance
The DIVIDE function in DAX is usually faster to avoid division-by-zero errors than the simple division operator. However, there are exceptions to this rule, described in this article through a simple performance analysis. » Read more
-
From SQL to DAX: Implementing NULLIF and COALESCE in DAX
This article describes how to implement a syntax equivalent to the T-SQL function NULLIF and the ANSI SQL function COALESCE, in DAX. » Read more
Related functions
Other related functions are:
Last update: Nov 1, 2024 » Contribute » Show contributors
Contributors: Alberto Ferrari, Marco Russo, Kenneth Barber,
Microsoft documentation: https://docs.microsoft.com/en-us/dax/divide-function-dax