This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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:
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 29 | |
| 25 | |
| 25 | |
| 21 | |
| 14 |
| User | Count |
|---|---|
| 61 | |
| 50 | |
| 25 | |
| 20 | |
| 20 |