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! Request now
I have a column made up of a Look up value below...
Solved! Go to Solution.
Hi, @dw0120
Based on your description, I created data to reproduce your scenario.The pbix file is attached in the end.
Table1:
Table2:
You may create a calculated column as below.
NewColumn =
var _val = LOOKUPVALUE(Table1[Column1],Table1[Column2],Table2[Column3])
return
IF(
ISBLANK(_val),
LOOKUPVALUE(Table1[Column1],Table1[Column2],Table2[Column4]),
_val
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @dw0120
Based on your description, I created data to reproduce your scenario.The pbix file is attached in the end.
Table1:
Table2:
You may create a calculated column as below.
NewColumn =
var _val = LOOKUPVALUE(Table1[Column1],Table1[Column2],Table2[Column3])
return
IF(
ISBLANK(_val),
LOOKUPVALUE(Table1[Column1],Table1[Column2],Table2[Column4]),
_val
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
use the COALESCE() function.
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 |
|---|---|
| 8 | |
| 7 | |
| 5 | |
| 4 | |
| 3 |