Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. 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!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
67 | |
65 | |
42 | |
42 |
User | Count |
---|---|
46 | |
40 | |
28 | |
27 | |
26 |