Forum Discussion
utsavlexmark
5 years agoHelper III
Need Help in Data Customization
Hello, As always whenever I have some special issues in Power Bi - I came here. Let me tell you the scenario: I have a table in Power Bi as below - Product Name Product Categor...
- 5 years ago
Hi utsavlexmark ,
Yes,"lookupvalue" function would help:
Assumed that your 2 tables as as below:
Create a calculated columns similarly as below:
Is promoted = var _lookup=LOOKUPVALUE('Product Part Number'[Product],'Promotion'[part number],'Product Part Number'[part number],blank()) Return IF(_lookup<>BLANK(),"Yes","No")And you will see:
For the related .pbix file,pls see attached.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!
v-kelly-msft
5 years agoCommunity Support
Hi utsavlexmark ,
Yes,"lookupvalue" function would help:
Assumed that your 2 tables as as below:
Create a calculated columns similarly as below:
Is promoted =
var _lookup=LOOKUPVALUE('Product Part Number'[Product],'Promotion'[part number],'Product Part Number'[part number],blank())
Return
IF(_lookup<>BLANK(),"Yes","No")
And you will see:
For the related .pbix file,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!