Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi there
I have two tables - Table1 and Table 2. Both hold columns called [User ID] and [User Name].
I want to create a dim table holding unique values of these two columns.
I could use the long-winded way of unioning both tables, keeping only those two columns and removing duplicates, but I expect there is a more efficient way of doing this I don't know about.
I have tried creating a new table in Dax using UNION(DISTINCT - but I only know how to pull in one column into this table.
Any ideas?
Solved! Go to Solution.
@Anonymous
maybe you can try
Table 2 = UNION(SUMMARIZE('Table','Table'[userid],'Table'[username]),SUMMARIZE('Table (2)','Table (2)'[userid],'Table (2)'[username]))
Proud to be a Super User!
@Anonymous
maybe you can try
Table 2 = UNION(SUMMARIZE('Table','Table'[userid],'Table'[username]),SUMMARIZE('Table (2)','Table (2)'[userid],'Table (2)'[username]))
Proud to be a Super User!
Thanks Ryan this worked perfectly. I will adopt this in future now for Dim Tables 🙂
you are welcome.
Proud to be a Super User!
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
87 | |
85 | |
82 | |
65 | |
49 |
User | Count |
---|---|
137 | |
111 | |
101 | |
66 | |
65 |