Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello Experts,
Please see the below table. i am trying to acheive the Parent column in Dax. Trying to lookup a value within the table. Also handle NULL's in the column C as well. in Excel, i can do a vlookp and derive the value, but, look up value function is not working as i there are duplicates in Column C. So not sure, what to do. need help.
| A | B | C | Parent - it’s a Dax driven Column |
| 1 | Apple | 5 | Fruits |
| 2 | Orange | 5 | Fruits |
| 3 | Banana | 5 | Fruits |
| 4 | Computer | ||
| 5 | Fruits | 5 | Fruits |
| 6 | Tomato | 10 | Vegetables |
| 7 | Onion | 10 | Vegetables |
| 8 | Cabbage | 10 | Vegetables |
| 9 | Brocolli | 10 | Vegetables |
| 10 | Vegetables | 10 | Vegetables |
Solved! Go to Solution.
Hi @koushikvps,
Based on my test, you could refer to below steps:
Sample data:
Create a calculated column:
Parent = LOOKUPVALUE (Table1[B],Table1[A], 'Table1'[C])
Now you could see the result:
You can also download the PBIX file to have a view.
https://www.dropbox.com/s/ap40ktstz0tl4tn/Help%20needed%20on%20Lookup%20value%20function.pbix?dl=0
Regards,
Daniel He
Hi @koushikvps,
Based on my test, you could refer to below steps:
Sample data:
Create a calculated column:
Parent = LOOKUPVALUE (Table1[B],Table1[A], 'Table1'[C])
Now you could see the result:
You can also download the PBIX file to have a view.
https://www.dropbox.com/s/ap40ktstz0tl4tn/Help%20needed%20on%20Lookup%20value%20function.pbix?dl=0
Regards,
Daniel He
Hi Daniel,
That worked. Thank you so much for the help.
@koushikvps you could use the related function. Also if a relationhip exists on the column b in your fact and dimension you should be able to just drag and drop the field. Could you send a screenshot of your model?
https://msdn.microsoft.com/en-us/query-bi/dax/related-function-dax
Related Function doesn't help as i am doing a lookup within the same table.
you could create a calculated table with distinct values linking fruit name and type(parent column) and then join it and use related or drag and drop value from that table
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 52 | |
| 47 | |
| 41 | |
| 38 |