Forum Discussion
jesusssss
Helper II
3 years agoNeed help with relating two tables with the same column for dropdown filtering in Power B
Hi there, I'm having an issue with trying to relate two tables that have the same column. I have a table called "Material entradas" that has a "provider" column, and then I have another table cal...
johnt75
Super User
3 years agoCreate a provider dimension table with the unique values from both tables. You can either do this in power query or in DAX like
Providers =
DISTINCT (
UNION (
DISTINCT ( 'prueba'[Provider] ),
DISTINCT ( 'Material entradas'[Provider] )
)
)
Create one-to-many relationships from this new table to both fact tables and then use the new column in any visuals, filters or slicers.
jesusssss
Helper II
3 years agoHi johnt75
I have already tried the method you told me and it has joined the two provider tables correctly
but when I try to relate them from one to many, it doesn't let me and it gives me this error.
Thanks for the help
- anands062 years agoFrequent Visitor
Hello,
Were you able to find the solution, I am having a similar issue on my side.
regards