Forum Discussion
vanessafvg
Community Champion
9 years agoDAX equivalent of SQL Coalesce
does any one know if a function like this exists?
- 9 years ago
There's no such a equivalent function, however you could replicate it with SWITCH.
value = SWITCH( FALSE(), ISBLANK([value1]),[value1] ,ISBLANK([value2]),[value2] ,ISBLANK([value3]),[value3] )
Eric_Zhang
Microsoft Employee
9 years agoThere's no such a equivalent function, however you could replicate it with SWITCH.
value = SWITCH( FALSE(), ISBLANK([value1]),[value1] ,ISBLANK([value2]),[value2] ,ISBLANK([value3]),[value3] )
- efilipe6 years ago
Helper IV
Now it's possible. Do a quick serch in Google.
Edgard