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 3 tables named Table A, Table B. They have one column in which the information are the same, "Folder name".
For a formula in table B, I need to LOOKUPVALUE the Folder Name from Table A, but when I do this in table B:
Column = LOOKUPVALUE('Table_A'[Folder_name],'Table_A'[Folder_name],'Table_B'[Folder_name])
There are no value in so column.
But if I do this in table A
Column =
LOOKUPVALUE('Table_B'[Folder_name],'Table_B'[Folder_name],'Table_A'[Folder_name])
I find the values I expect in the column!
Why does my lookupvalue works in a table with the same datas, and not in the other one ? I can't share the data as it is confidential, but I've tried with a another Table C containing a similar [Folder_name] column, and got the same result
Solved! Go to Solution.
Hi @B_kaydo
To fix the LOOKUPVALUE issue between Table A and Table B:
Check for Relationships: Ensure there’s an active relationship between Table A and Table B on the Folder_name column. Without this, LOOKUPVALUE won’t work correctly.
Use RELATED if Relationship Exists: If there's a relationship, try using the RELATED function instead of LOOKUPVALUE:
Column in Table B = RELATED('Table A'[Folder_name])
By following these steps, you should be able to resolve the issue and correctly pull values from Table A into Table B.
Did I answer your question? Mark my post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a "Kudos" 🙂
Kind Regards,
Poojara
Data Analyst | MSBI Developer | Power BI Consultant
YouTube: https://youtube.com/@biconcepts?si=04iw9SYI2HN80HKS
Column = LOOKUPVALUE('Table_A'[Folder_name], 'Table_A'[Folder_name], 'Table_B'[Folder_name])
Column = RELATED('Table_A'[Folder_name])
💌 If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
Hi @B_kaydo
Thanks to Poojara_D12 and Kedar_Pande for their great replies to this thread.
Please consider accepting their replies as a solution if it has helped you solve your problem.
If you have relationships between tables, RELATED is the more recommended method.
LOOKUPVALUE function (DAX) - DAX | Microsoft Learn
RELATED function (DAX) - DAX | Microsoft Learn
Best Regards,
Jarvis Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Column = LOOKUPVALUE('Table_A'[Folder_name], 'Table_A'[Folder_name], 'Table_B'[Folder_name])
Column = RELATED('Table_A'[Folder_name])
💌 If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
Hi @B_kaydo
To fix the LOOKUPVALUE issue between Table A and Table B:
Check for Relationships: Ensure there’s an active relationship between Table A and Table B on the Folder_name column. Without this, LOOKUPVALUE won’t work correctly.
Use RELATED if Relationship Exists: If there's a relationship, try using the RELATED function instead of LOOKUPVALUE:
Column in Table B = RELATED('Table A'[Folder_name])
By following these steps, you should be able to resolve the issue and correctly pull values from Table A into Table B.
Did I answer your question? Mark my post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a "Kudos" 🙂
Kind Regards,
Poojara
Data Analyst | MSBI Developer | Power BI Consultant
YouTube: https://youtube.com/@biconcepts?si=04iw9SYI2HN80HKS
Hello,
The issue comes from the duplicates, in the table A there are duplicates which seem to perturb the formula.
Thank you !
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
71 | |
70 | |
38 | |
26 | |
26 |
User | Count |
---|---|
100 | |
87 | |
45 | |
43 | |
35 |