The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 ?
Solved! Go to Solution.
@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
@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