Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Letโs celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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 !
User | Count |
---|---|
84 | |
73 | |
52 | |
49 | |
46 |
User | Count |
---|---|
73 | |
50 | |
49 | |
49 | |
41 |