cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
MKPartner
Helper I
Helper I

Uniqe table caming from three tables

Hi Team, 

 

I have three tables which aren't in relation but has the same column "mfg_ord_no". I'd like to make from each one combined separate table with only one columnt with only uniqe values. Is there possibility to do it ? 

 

Error.JPG

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@MKPartner , You can create common table

 

distinct(union(distinct(Table1[mfg_ord_no]),distinct(Table2[mfg_ord_no]),distinct(Table3[mfg_ord_no])))

 

and join with three tables to analyze together

 

https://amitchandak.medium.com/power-bi-when-i-asked-you-to-create-common-tables-a-quick-dax-solutio...

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@MKPartner , You can create common table

 

distinct(union(distinct(Table1[mfg_ord_no]),distinct(Table2[mfg_ord_no]),distinct(Table3[mfg_ord_no])))

 

and join with three tables to analyze together

 

https://amitchandak.medium.com/power-bi-when-i-asked-you-to-create-common-tables-a-quick-dax-solutio...

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors