Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register 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:
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 38 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 68 | |
| 66 | |
| 29 | |
| 26 | |
| 25 |