This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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 April 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 |
|---|---|
| 39 | |
| 28 | |
| 27 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 37 | |
| 32 | |
| 26 | |
| 25 |