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
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!
User | Count |
---|---|
119 | |
75 | |
66 | |
51 | |
49 |
User | Count |
---|---|
180 | |
96 | |
79 | |
77 | |
74 |