Forum Discussion
Sebastian
10 years agoAdvocate III
function isnull
Hi all, exist a function in power bi which works like the function "isnull" in t-sql? I have a measure which sum a value over a periode and it shows the result in a table. If there aren't any...
- 10 years ago
Sebastian can you share your expression? because isblank() returns you a boolean so it can be used with conditional expressions. If you want to to return blank value you can use something like
IF( ISBLANK(TABLE[MEASURE]), BLANK(),TABLE[MEASURE])
OR
IF( ISBLANK(TABLE[MEASURE]), 0,TABLE[MEASURE])
HarrisMalik
10 years agoContinued Contributor
Sebastian can you share your expression? because isblank() returns you a boolean so it can be used with conditional expressions. If you want to to return blank value you can use something like
IF( ISBLANK(TABLE[MEASURE]), BLANK(),TABLE[MEASURE])
OR
IF( ISBLANK(TABLE[MEASURE]), 0,TABLE[MEASURE])
Shiva799
8 years agoFrequent Visitor
Can this be used advanced editor? I want to check for null that i'll pass as parameters.
Thanks