Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Check out the July 2025 Power BI update to learn about new features.