Forum Discussion
Anonymous
4 years agoNot applicable
Circular depency error on UNION table
Hey all, I have created a UNION table to create a table with all Customer IDs from two source (one source contains less customer IDs and some 0's). I want to create a one to many relationship so ...
amitchandak
4 years agoSuper User
Anonymous , use distinct
distinct(union(distinct(Table1[Customer ID]),distinct(Table2[Customer ID])))
Anonymous
4 years agoNot applicable
Hey Amit,
Thanks but now a many-to-many relationship is the only one available. See below, how can I make it a one to many? Because a customer can have multiple saleslines but a salesline can only have one customer.