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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi together,
i really looking for a good tip for my following problem , it really drives me crazy !!
It is all in the same table - no realtionship needed.
Both columns have multiple values - unique values .
Line 1 is clear, if WWL_FACT_FACT_ID_HOST is empty - please use FACT_ID_Host
Line | FACT_ID_HOST | WWL_FACT_FACT_ID_HOST | that should be the solution | |
1 | 1M | "empty" | 1M | |
2 | 1M | 1N | 1M | |
3 | 1N | 1N | 1M | if this is same please look for not same and use this |
Solved! Go to Solution.
Result =
IF(
Tabelle1[WWL Werk] <> BLANK(),
Tabelle1[Werk Nr. HOST],
VAR _search = Tabelle1[Werk Nr. HOST]
RETURN
CONCATENATEX(
FILTER(
Tabelle1,
Tabelle1[WWL Werk] = _search
),
Tabelle1[Werk Nr. HOST]
)
)
Result =
IF(
Tabelle1[WWL Werk] <> BLANK(),
Tabelle1[Werk Nr. HOST],
VAR _search = Tabelle1[Werk Nr. HOST]
RETURN
CONCATENATEX(
FILTER(
Tabelle1,
Tabelle1[WWL Werk] = _search
),
Tabelle1[Werk Nr. HOST]
)
)
LookupValue does not work - because of multiple values where single expected.
@JuliaDRX
do you want to do a quick zoom to explain and I'll send back a solution file?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
13 | |
11 | |
9 | |
8 | |
8 |