Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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:
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 39 | |
| 35 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 73 | |
| 73 | |
| 38 | |
| 35 | |
| 26 |