IF.EAGER

IF.EAGER Checks whether a condition is met, and returns one value if TRUE, and another value if FALSE. Uses eager execution.


Syntax

IF.EAGER ( LogicalTest, ResultIfTrue [, ResultIfFalse] )

Parameters

LogicalTest – Any value or expression that can be evaluated to TRUE or FALSE.

ResultIfTrue – The value that is returned if the logical test is TRUE.

ResultIfFalse – (Optional) The value that is returned if the logical test is FALSE; if omitted, BLANK is returned.

Return Value

Any type of value that can be returned by an expression.


Reference Data

https://docs.microsoft.com/en-us/dax/dax-function-reference

DAX Functions / Logical Functions / IF.EAGER