Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 with adding a new column in my table (in Data Editor) to check if the column is blank, using the ISBLANK() function
As you can see here, the ISBLANK() function return false even if there is no value (empty string)
My isGroup1Blank column is defined with :
Solved! Go to Solution.
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())
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())
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 45 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |