Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello Power BI community.
I have two tables that have columns with the same name. Can I create a segment (filter) that filters both the first and the second table?
I was going to use the relationships from the model part but only a link is possible with this system. My goal is to link at least two columns from two different tables.
I thank you in advance for all the answers you can give me.
Solved! Go to Solution.
@Nathan_Jaouen , Create a common table
segment= distinct(union(distinct(Table1[segment]),distinct(Table2[segment])))
Join both tables with common tables
https://www.seerinteractive.com/blog/join-many-many-power-bi/
@Nathan_Jaouen , Create a common table
segment= distinct(union(distinct(Table1[segment]),distinct(Table2[segment])))
Join both tables with common tables
https://www.seerinteractive.com/blog/join-many-many-power-bi/