COALESCE is a DAX function that returns the first argument that does not evaluate to a blank value, or BLANK if all arguments are blank.
Syntax
COALESCE(
Value1,
[ Value2, ... ]
)
Argument | Properties | Description |
---|---|---|
Value1 | Any value or expression. | |
Value2 | Repeatable | Any value or expression. |