Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Greetings,
I am looking to create a longish DAX measure that combines some custom text with measures already written. How would I filter out those entries that aren't applicable, but are showing up on my table due to the custom string portion of my measure:
Thank you.
Solved! Go to Solution.
Add logic that returns a value only if the measure is not blank:
Formatted All Outputs =
VAR vMeasureValue = [All Research Objective Outputs]
VAR vResult =
IF (
NOT ISBLANK ( vMeasureValue ),
"Research Objective:" & UNICHAR ( 10 ) & vMeasureValue
)
RETURN
vResult
Proud to be a Super User!
Add logic that returns a value only if the measure is not blank:
Formatted All Outputs =
VAR vMeasureValue = [All Research Objective Outputs]
VAR vResult =
IF (
NOT ISBLANK ( vMeasureValue ),
"Research Objective:" & UNICHAR ( 10 ) & vMeasureValue
)
RETURN
vResult
Proud to be a Super User!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |