Forum Discussion
Anonymous
6 years agoNot applicable
ISBLANK() not working as expected?
Hi, I'd like to add condition on my report only if the content of a column table in not empty/null/blank I tried to do it with a measure, but I couldn't add it as a report filter, then I went...
- 6 years ago
Hi Anonymous
First, BLANK value and "" is not always the same
Second, as you use measure, not a column it could return unexpected result because of row-context
try a caclulated column like yours above or more sophisticated option
= IF(ISBLANK('cerberus campaign'[Group1]) || 'cerberus campaign'[Group1] = "", true(), false())
az38
6 years agoCommunity Champion
Hi Anonymous
First, BLANK value and "" is not always the same
Second, as you use measure, not a column it could return unexpected result because of row-context
try a caclulated column like yours above or more sophisticated option
= IF(ISBLANK('cerberus campaign'[Group1]) || 'cerberus campaign'[Group1] = "", true(), false())
- Anonymous6 years agoNot applicable