Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Solved! Go to Solution.
@Kasiop - Create a measure like this:
Medida: IF(NOT(ISBLANK(MAX([formula]))) && NOT(ISBLANK(MAX([description])),1,0)
You can then filter by the measure.
Hi @Kasiop -
If I understand what you're trying to accomplish (show all records that have at least one of description or formula), you can create this calculated column, then use it in the filter pane and set to "Y":
Show =
IF (
OR (
AND (
NOT ( 'Table'[Description] = "" ),
NOT ( ISBLANK ( 'Table'[Description] ) )
),
AND ( NOT ( 'Table'[Formula] = "" ), NOT ( ISBLANK ( 'Table'[Formula] ) ) )
),
"Y",
"N"
)
Hope this helps
David
@Kasiop - Create a measure like this:
Medida: IF(NOT(ISBLANK(MAX([formula]))) && NOT(ISBLANK(MAX([description])),1,0)
You can then filter by the measure.
You need a 3rd close paren after [description]
... NOT ( ISBLANK ( MAX ( [description] ) ) ),1, 0)
Hope this helps
David
Thanks a lot, indeed I had to add a )!!
And I have chanegd a little the formula:
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 38 | |
| 31 | |
| 27 |