Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 10 | |
| 10 | |
| 9 | |
| 8 |