Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Solved! Go to Solution.
@Anonymous Measure for the field circled in red:
MacroprocessesThatApplicationsUse =
VAR codigo_app = SELECTEDVALUE('Transformed Mother Table'[Application Code])
RETURN
IF(
ISBLANK(codigo_app),
"Enter an application code to view information.",
CONCATENATEX(
FILTER(
'Transformed Macroprocesses Table',
'Transformed Macroprocesses Table'[ID] IN VALUES('Transformed Mother Table'[Macroprocesses that use the application])
),
'Transformed Macroprocesses Table'[Business Macroprocess Name],
UNICHAR(10)
)
)
New measure to combine the values:
CombinedMeasure =
VAR macroprocesses = [MacroprocessesThatApplicationsUse]
VAR otherMeasure = [YourOtherMeasure] -- Replace with the actual measure name
RETURN
IF(
ISBLANK(macroprocesses) || ISBLANK(otherMeasure),
"Data is missing.",
macroprocesses & UNICHAR(10) & otherMeasure
)
Proud to be a Super User! |
|
@Anonymous Measure for the field circled in red:
MacroprocessesThatApplicationsUse =
VAR codigo_app = SELECTEDVALUE('Transformed Mother Table'[Application Code])
RETURN
IF(
ISBLANK(codigo_app),
"Enter an application code to view information.",
CONCATENATEX(
FILTER(
'Transformed Macroprocesses Table',
'Transformed Macroprocesses Table'[ID] IN VALUES('Transformed Mother Table'[Macroprocesses that use the application])
),
'Transformed Macroprocesses Table'[Business Macroprocess Name],
UNICHAR(10)
)
)
New measure to combine the values:
CombinedMeasure =
VAR macroprocesses = [MacroprocessesThatApplicationsUse]
VAR otherMeasure = [YourOtherMeasure] -- Replace with the actual measure name
RETURN
IF(
ISBLANK(macroprocesses) || ISBLANK(otherMeasure),
"Data is missing.",
macroprocesses & UNICHAR(10) & otherMeasure
)
Proud to be a Super User! |
|
Which should I display in my visual object so that all the other data and the added macroprocess data can be seen?
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 |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 84 | |
| 70 | |
| 38 | |
| 29 | |
| 26 |