Forum Discussion
function isnull
- 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])
I tried this function but as i used isblanc() the measure showed 0.00 like i want it but deleted all other values from other fields in the same row.
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])
- Sebastian10 years agoAdvocate III
Ah ok,
it was as stupid mistake by myself.
I use if(isblank(table[measure]='true';0.00;table[measure]
Sorry guys.
Thanks a lot.
- HarrisMalik10 years agoContinued Contributor
Sebastian Good that it helps you. Do not forget to mark it as answered in order to help others.
- Shiva7998 years agoFrequent Visitor
Can this be used advanced editor? I want to check for null that i'll pass as parameters.
Thanks