Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
I have the following table:
ALL DATA
Team | Name | Age | Country |
NYG | Jonh Doe | 17 | USA |
NYG | Jonh Doe | 22 | Canada |
NYG | Claire | 13 | Bolivia |
DAL | James | 34 | Mexico |
DAL | James | 74 | China |
PHI | Mary | 23 | Japan |
PHI | Claire | 11 | USA |
NE | Mary | 57 | England |
I have to create a table with unique values from 2 columns, like following:
UNIQUE TEAM-NAME
Team | Name |
NYG | Jonh Doe |
NYG | Claire |
DAL | James |
PHI | Mary |
PHI | Claire |
NE | Mary |
Solved! Go to Solution.
One way is to create a calculated table from modelling tab
Calculated Table = ALL ( Table1[Team], Table1[Name] )
or in the query editor...Duplicate the Query..select the 2 columns and choose GroupBY
You can also use Table.Distinct(Query[Column1][Column2]) in Power Query
One way is to create a calculated table from modelling tab
Calculated Table = ALL ( Table1[Team], Table1[Name] )
or in the query editor...Duplicate the Query..select the 2 columns and choose GroupBY
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.