Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Good afternoon, what I want to do is that from 12 tables it takes only one column and shows me only the unique values
This would be the column that I would like to combine with the other tables that are 12
Solved! Go to Solution.
You could do something like
DISTINCT(
UNION(
SELECTCOLUMNS(from table 1),
SELECTCOLUMNS(from table 2),
...
)
)
But it would be much simpler if you had a single table in Power Query and do a deduplication there.
You could do something like
DISTINCT(
UNION(
SELECTCOLUMNS(from table 1),
SELECTCOLUMNS(from table 2),
...
)
)
But it would be much simpler if you had a single table in Power Query and do a deduplication there.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.