Join 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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi, Is there a way where I can combine distinct values of mutiple columns within the same table and display them in one single column.
For example I have Table A with columns X,Y,Z and all 3 columns have multiple values as shown below.
X Y Z
aa ee dd
bb rrr qq
ff aa rrr
The output of the DAX should be
Outputcolumn
aa
bb
ff
ee
rrr
dd
Order of the values doesn't matter.
Thanks for your time.
Solved! Go to Solution.
@Anonymous , Try a new table like
distinct(union(all(Table[X]),all(Table[Y]),all(Table[Z])))
Hi,
In the Query Editor this should be easy to do. Insert an Index column. Select that column and "Univot other columns". Remove all columns except the Value column. Remove duplicates from the Value column.
Hope this helps.